From 243e9573c7601e01d236ad855d76263e7cb88a81 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 6 Oct 2023 18:21:58 -0400 Subject: [PATCH] randomgen: inserted xo/ into include path --- utest/bplustree.cpp | 4 ++-- utest/random_tree_ops.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utest/bplustree.cpp b/utest/bplustree.cpp index 24115e4b..2fe68d83 100644 --- a/utest/bplustree.cpp +++ b/utest/bplustree.cpp @@ -4,8 +4,8 @@ #include "random_tree_ops.hpp" #include "xo/ordinaltree/BplusTree.hpp" -#include "randomgen/random_seed.hpp" -#include "randomgen/print.hpp" +#include "xo/randomgen/random_seed.hpp" +#include "xo/randomgen/print.hpp" #include "indentlog/scope.hpp" #include "catch2/catch.hpp" diff --git a/utest/random_tree_ops.hpp b/utest/random_tree_ops.hpp index b81601f7..890202f7 100644 --- a/utest/random_tree_ops.hpp +++ b/utest/random_tree_ops.hpp @@ -1,6 +1,6 @@ /* @file random_tree_ops.hpp **/ -#include "randomgen/xoshiro256.hpp" +#include "xo/randomgen/xoshiro256.hpp" #include "indentlog/scope.hpp" #include "indentlog/print/tag.hpp" #include "indentlog/print/vector.hpp"