Skip to content

Commit 1eaecc9

Browse files
committed
More tidying, including hpp->h
1 parent 818b6ce commit 1eaecc9

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

include/flxml.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Revision $DateTime: 2009/05/13 01:46:17 $
77
//! \file rapidxml.hpp This file contains rapidxml parser and DOM implementation
88

9-
#include "flxml/wrappers.h"
10-
#include "flxml/tables.h"
9+
#include <flxml/wrappers.h>
10+
#include <flxml/tables.h>
1111

1212
#include <cstdint> // For std::size_t
1313
#include <cassert> // For assert

include/flxml/iterators.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Revision $DateTime: 2009/05/13 01:46:17 $
77
//! \file rapidxml_iterators.hpp This file contains rapidxml iterators
88

9-
#include "flxml.h"
9+
#include <flxml.h>
1010

1111
namespace flxml
1212
{

include/flxml/predicates.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
#include <string_view>
99
#include <list>
10-
#include "flxml/generator.h"
11-
#include "flxml.h"
10+
#include <flxml/generator.h>
11+
#include <flxml.h>
1212

1313
namespace flxml {
1414
template<typename Ch> class xpath;

include/flxml/print.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Revision $DateTime: 2009/05/13 01:46:17 $
77
//! \file rapidxml_print.hpp This file contains rapidxml printer implementation
88

9-
#include "flxml.h"
9+
#include <flxml.h>
1010

1111
// Only include streams if not disabled
1212
#ifndef FLXML_NO_STREAMS

include/flxml/utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! \file rapidxml_utils.hpp This file contains high-level rapidxml utilities that can be useful
88
//! in certain simple scenarios. They should probably not be used if maximizing performance is the main objective.
99

10-
#include "flxml.hpp"
10+
#include <flxml.h>
1111
#include <vector>
1212
#include <string>
1313
#include <fstream>

test/src/iterators.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <list>
77
#include <algorithm>
88
#include <ranges>
9-
#include "flxml.hpp"
9+
#include <flxml.h>
1010

1111
TEST(Iterators, Nodes) {
1212
std::string xml = "<children><one/><two/><three/></children>";

test/src/low-level-parse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
#include <gtest/gtest.h>
6-
#include "flxml.hpp"
6+
#include <flxml.h>
77

88
TEST(Constants, Empty) {
99
flxml::xml_document<> doc;

test/src/manipulations.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#include <gtest/gtest.h>
66

7-
#include "flxml.hpp"
8-
#include "flxml/print.hpp"
7+
#include <flxml.h>
8+
#include <flxml/print.h>
99

1010
namespace {
1111
auto print(flxml::xml_document<> & doc) {

test/src/parse-simple.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
#include <gtest/gtest.h>
6-
#include <flxml.hpp>
6+
#include <flxml.h>
77

88
TEST(Parser, SingleElement) {
99
char doc_text[] = "<single-element/>";

test/src/perf.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
// Created by dave on 07/07/2024.
33
//
44

5-
#include <flxml.hpp>
6-
#include <flxml/utils.hpp>
5+
#include <flxml.h>
6+
#include <flxml/utils.h>
77

88
#include <gtest/gtest.h>
99
#include <numeric>
10-
#include "flxml/print.hpp"
11-
#include "flxml/iterators.hpp"
10+
#include "flxml/print.h"
11+
#include "flxml/iterators.h"
1212

1313
const auto xml_sample_file = "REC-xml-20081126.xml";
1414

0 commit comments

Comments
 (0)