indentlog: insert xo/ into include path
This commit is contained in:
parent
e27c64ce15
commit
c6a258eb3c
35 changed files with 29 additions and 25 deletions
|
|
@ -1,4 +1,6 @@
|
|||
#include "indentlog/scope.hpp"
|
||||
/* ex1.cpp */
|
||||
|
||||
#include "xo/indentlog/scope.hpp"
|
||||
|
||||
using namespace xo;
|
||||
|
||||
|
|
@ -16,3 +18,5 @@ int
|
|||
main(int argc, char ** argv) {
|
||||
outer(123);
|
||||
}
|
||||
|
||||
/* end ex1.cpp */
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* examples ex2/ex2.cpp */
|
||||
|
||||
#include "indentlog/scope.hpp"
|
||||
#include "xo/indentlog/scope.hpp"
|
||||
|
||||
using namespace xo;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* examples ex3/ex3.cpp */
|
||||
|
||||
#include "indentlog/scope.hpp"
|
||||
#include "xo/indentlog/scope.hpp"
|
||||
|
||||
using namespace xo;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* @file ex4.cpp */
|
||||
|
||||
#include "indentlog/scope.hpp"
|
||||
#include "xo/indentlog/scope.hpp"
|
||||
|
||||
using namespace xo;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "indentlog/timeutil/timeutil.hpp"
|
||||
#include "xo/indentlog/timeutil/timeutil.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace time {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file array.test.cpp */
|
||||
|
||||
#include "indentlog/print/array.hpp" /* overload operator<< for std::array */
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/array.hpp" /* overload operator<< for std::array */
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
/* @file code_location.test.cpp */
|
||||
|
||||
#include "indentlog/print/code_location.hpp"
|
||||
#include "indentlog/print/color.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/code_location.hpp"
|
||||
#include "xo/indentlog/print/color.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <vector>
|
||||
#include <catch2/catch.hpp>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file filename.test.cpp */
|
||||
|
||||
#include "indentlog/print/filename.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/filename.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <vector>
|
||||
#include <catch2/catch.hpp>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file fixed.test.cpp */
|
||||
|
||||
#include "indentlog/print/fixed.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/fixed.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file function.test.cpp */
|
||||
|
||||
#include "indentlog/print/function.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/function.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file fixed.test.cpp */
|
||||
|
||||
#include "indentlog/print/quoted.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/quoted.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
/* @file tag.test.cpp */
|
||||
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "indentlog/print/vector.hpp"
|
||||
#include "indentlog/print/concat.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/vector.hpp"
|
||||
#include "xo/indentlog/print/concat.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file timeutil.test.cpp */
|
||||
|
||||
#include "indentlog/timeutil/timeutil.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/timeutil/timeutil.hpp"
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* @file vector.test.cpp */
|
||||
|
||||
#include "indentlog/print/vector.hpp" /* overload operator<< for std::vector */
|
||||
#include "indentlog/print/tag.hpp"
|
||||
#include "xo/indentlog/print/vector.hpp" /* overload operator<< for std::vector */
|
||||
#include "xo/indentlog/print/tag.hpp"
|
||||
#include <catch2/catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue