File tree 11 files changed +53
-8
lines changed
11 files changed +53
-8
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ // bindgen-flags: -- -Itests/headers/source-order-nested
2
+
3
+ const int THIS_SHOULD_BE_FIRST = 1 ;
4
+
5
+ #include "source-order-nested-2.h"
6
+
7
+ extern int THIS_SHOULD_BE_FIFTH ;
Original file line number Diff line number Diff line change 2
2
3
3
void THIS_SHOULD_BE_SECOND ();
4
4
5
- #include "source-order-3.h"
5
+ #include "source-order-nested- 3.h"
6
6
7
7
struct THIS_SHOULD_BE_FOURTH {};
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ // bindgen-flags: -- -Itests/headers/source-order-siblings
2
+
3
+ const char * ROOT = "root" ;
4
+
5
+ #include "a.h"
6
+ #include "b.h"
Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ const char A = 'a' ;
4
+
5
+ #include "aa.h"
Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ void AA ();
Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ #define B 'b'
4
+
5
+ #include "bb.h"
Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ struct BB {};
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments