Skip to content

Commit ae0ba27

Browse files
committed
Fix include order in xmllang
1 parent 8174586 commit ae0ba27

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/xmllang/graphml.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Author: Michael Tautschnig, [email protected]
99
/// \file
1010
/// Read/write graphs as GraphML
1111

12+
#include "graphml.h"
13+
1214
#include <cassert>
1315
#include <set>
1416

1517
#include <util/message.h>
1618
#include <util/string2int.h>
1719

18-
#include "graphml.h"
19-
2020
// include last to make sure #define stack(x) of parser.h does not
2121
// collide with std::stack included by graph.h
2222
#include "xml_parser.h"

src/xmllang/xml_parser.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ Author: Daniel Kroening, [email protected]
66
77
\*******************************************************************/
88

9+
#include "xml_parser.h"
910

1011
#include <cstdlib>
1112
#include <cstring>
1213
#include <fstream>
1314

14-
#include "xml_parser.h"
15-
1615
xml_parsert xml_parser;
1716

1817
// 'do it all' function

0 commit comments

Comments
 (0)