Skip to content

Commit 9714c67

Browse files
committed
Fixes include order
1 parent 7e0a613 commit 9714c67

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

main.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
#include <unistd.h>
1616
#include <unordered_map>
1717

18+
// there may be some issue here. with a different include order
19+
// (assembler/caller/smoother at the end), compilation fails
20+
#include "assembler.hpp"
21+
#include "caller.hpp"
1822
#include "chromosomes.hpp"
1923
#include "config.hpp"
2024
#include "lprint.hpp"
2125
#include "ping_pong.hpp"
22-
23-
#include "assembler.hpp"
24-
#include "caller.hpp"
2526
#include "smoother.hpp"
2627

2728
#ifdef LOCAL_BUILD

0 commit comments

Comments
 (0)