Skip to content

Commit ce41d27

Browse files
committed
Correct order of inclusions to be consistent.
1 parent 2ba3743 commit ce41d27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tidesdb.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* limitations under the License.
1818
*/
1919
#include "tidesdb.hpp"
20-
#include <iostream>
21-
#include <utility>
2220

2321
#define ERR_HANDLER() \
2422
if (err) \

tidesdb.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
*/
1919

2020
#pragma once
21-
#include <tidesdb/tidesdb.h>
21+
#include <iostream>
22+
#include <utility>
2223
#include <chrono>
2324
#include <vector>
25+
#include <tidesdb/tidesdb.h>
2426

2527
/*
2628
* TidesDB Namespace

0 commit comments

Comments
 (0)