From 14ee09a76b45a9baf64a1de9941ae5028e612e8f Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 6 Oct 2023 19:22:04 -0400 Subject: [PATCH] build: update include paths to include xo/ --- include/xo/ordinaltree/BplusTree.hpp | 6 +++--- include/xo/ordinaltree/RedBlackTree.hpp | 6 +++--- include/xo/ordinaltree/bplustree/BplusTreeUtil.hpp | 4 ++-- include/xo/ordinaltree/bplustree/InternalNode.hpp | 4 ++-- include/xo/ordinaltree/bplustree/Iterator.hpp | 2 +- include/xo/ordinaltree/bplustree/LeafNode.hpp | 2 +- utest/bplustree.cpp | 2 +- utest/random_tree_ops.hpp | 6 +++--- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/include/xo/ordinaltree/BplusTree.hpp b/include/xo/ordinaltree/BplusTree.hpp index f58b431..7810a03 100644 --- a/include/xo/ordinaltree/BplusTree.hpp +++ b/include/xo/ordinaltree/BplusTree.hpp @@ -15,9 +15,9 @@ #include "bplustree/Iterator.hpp" #include "bplustree/Lhs.hpp" #include "bplustree/bplustree_tags.hpp" -#include "indentlog/scope.hpp" -#include "indentlog/print/tag.hpp" -#include "indentlog/print/pad.hpp" +#include "xo/indentlog/scope.hpp" +#include "xo/indentlog/print/tag.hpp" +#include "xo/indentlog/print/pad.hpp" #include /* for std::unqiue_ptr */ #include /* for std::max */ #include /* for std::numeric_limits */ diff --git a/include/xo/ordinaltree/RedBlackTree.hpp b/include/xo/ordinaltree/RedBlackTree.hpp index e9460b9..7a3ea1e 100644 --- a/include/xo/ordinaltree/RedBlackTree.hpp +++ b/include/xo/ordinaltree/RedBlackTree.hpp @@ -5,9 +5,9 @@ #pragma once -#include "indentlog/scope.hpp" -#include "indentlog/print/pad.hpp" -#include "indentlog/print/quoted.hpp" +#include "xo/indentlog/scope.hpp" +#include "xo/indentlog/print/pad.hpp" +#include "xo/indentlog/print/quoted.hpp" #include #include #include diff --git a/include/xo/ordinaltree/bplustree/BplusTreeUtil.hpp b/include/xo/ordinaltree/bplustree/BplusTreeUtil.hpp index f2da026..61c91e9 100644 --- a/include/xo/ordinaltree/bplustree/BplusTreeUtil.hpp +++ b/include/xo/ordinaltree/bplustree/BplusTreeUtil.hpp @@ -4,8 +4,8 @@ #include "IteratorUtil.hpp" #include "bplustree_tags.hpp" -#include "indentlog/scope.hpp" -#include "indentlog/print/tag.hpp" +#include "xo/indentlog/scope.hpp" +#include "xo/indentlog/print/tag.hpp" #include // for std::unique_ptr #include diff --git a/include/xo/ordinaltree/bplustree/InternalNode.hpp b/include/xo/ordinaltree/bplustree/InternalNode.hpp index d4dce90..9ef4b7d 100644 --- a/include/xo/ordinaltree/bplustree/InternalNode.hpp +++ b/include/xo/ordinaltree/bplustree/InternalNode.hpp @@ -3,8 +3,8 @@ #pragma once #include "GenericNode.hpp" -#include "indentlog/scope.hpp" -#include "indentlog/print/tostr.hpp" +#include "xo/indentlog/scope.hpp" +#include "xo/indentlog/print/tostr.hpp" #include namespace xo { diff --git a/include/xo/ordinaltree/bplustree/Iterator.hpp b/include/xo/ordinaltree/bplustree/Iterator.hpp index 90f5792..ed82f8d 100644 --- a/include/xo/ordinaltree/bplustree/Iterator.hpp +++ b/include/xo/ordinaltree/bplustree/Iterator.hpp @@ -4,7 +4,7 @@ #include "IteratorUtil.hpp" #include "LeafNode.hpp" -#include "indentlog/print/tostr.hpp" +#include "xo/indentlog/print/tostr.hpp" namespace xo { namespace tree { diff --git a/include/xo/ordinaltree/bplustree/LeafNode.hpp b/include/xo/ordinaltree/bplustree/LeafNode.hpp index 419bd63..bcb4346 100644 --- a/include/xo/ordinaltree/bplustree/LeafNode.hpp +++ b/include/xo/ordinaltree/bplustree/LeafNode.hpp @@ -3,7 +3,7 @@ #pragma once #include "GenericNode.hpp" -#include "indentlog/scope.hpp" +#include "xo/indentlog/scope.hpp" #include namespace xo { diff --git a/utest/bplustree.cpp b/utest/bplustree.cpp index 2fe68d8..a38fd54 100644 --- a/utest/bplustree.cpp +++ b/utest/bplustree.cpp @@ -6,7 +6,7 @@ #include "xo/ordinaltree/BplusTree.hpp" #include "xo/randomgen/random_seed.hpp" #include "xo/randomgen/print.hpp" -#include "indentlog/scope.hpp" +#include "xo/indentlog/scope.hpp" #include "catch2/catch.hpp" namespace { diff --git a/utest/random_tree_ops.hpp b/utest/random_tree_ops.hpp index 890202f..0c6d898 100644 --- a/utest/random_tree_ops.hpp +++ b/utest/random_tree_ops.hpp @@ -1,9 +1,9 @@ /* @file random_tree_ops.hpp **/ #include "xo/randomgen/xoshiro256.hpp" -#include "indentlog/scope.hpp" -#include "indentlog/print/tag.hpp" -#include "indentlog/print/vector.hpp" +#include "xo/indentlog/scope.hpp" +#include "xo/indentlog/print/tag.hpp" +#include "xo/indentlog/print/vector.hpp" #include "catch2/catch.hpp" #include #include