From 00fae469e02e42ed9c9e3f9b5aa1f4527d789cf2 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 6 Oct 2023 18:41:45 -0400 Subject: [PATCH] randomgen: fixing include paths for xo/ insertion --- example/ex1/ex1.cpp | 4 +--- example/ex2/ex2.cpp | 4 ++-- include/{ => xo}/randomgen/engine_concept.hpp | 0 include/{ => xo}/randomgen/print.hpp | 0 include/{ => xo}/randomgen/random_seed.hpp | 0 include/{ => xo}/randomgen/xoshiro256.hpp | 0 6 files changed, 3 insertions(+), 5 deletions(-) rename include/{ => xo}/randomgen/engine_concept.hpp (100%) rename include/{ => xo}/randomgen/print.hpp (100%) rename include/{ => xo}/randomgen/random_seed.hpp (100%) rename include/{ => xo}/randomgen/xoshiro256.hpp (100%) diff --git a/example/ex1/ex1.cpp b/example/ex1/ex1.cpp index 8c908fa5..0db92be4 100644 --- a/example/ex1/ex1.cpp +++ b/example/ex1/ex1.cpp @@ -1,10 +1,8 @@ /* @file ex1.cpp */ -#include "randomgen/xoshiro256.hpp" +#include "xo/randomgen/xoshiro256.hpp" #include #include -//#include -//#include using namespace xo; using namespace xo::rng; diff --git a/example/ex2/ex2.cpp b/example/ex2/ex2.cpp index c77e06ff..949b65dc 100644 --- a/example/ex2/ex2.cpp +++ b/example/ex2/ex2.cpp @@ -1,7 +1,7 @@ /* @file ex2.cpp */ -#include "randomgen/xoshiro256.hpp" -#include "randomgen/random_seed.hpp" +#include "xo/randomgen/xoshiro256.hpp" +#include "xo/randomgen/random_seed.hpp" using namespace xo; using namespace xo::rng; diff --git a/include/randomgen/engine_concept.hpp b/include/xo/randomgen/engine_concept.hpp similarity index 100% rename from include/randomgen/engine_concept.hpp rename to include/xo/randomgen/engine_concept.hpp diff --git a/include/randomgen/print.hpp b/include/xo/randomgen/print.hpp similarity index 100% rename from include/randomgen/print.hpp rename to include/xo/randomgen/print.hpp diff --git a/include/randomgen/random_seed.hpp b/include/xo/randomgen/random_seed.hpp similarity index 100% rename from include/randomgen/random_seed.hpp rename to include/xo/randomgen/random_seed.hpp diff --git a/include/randomgen/xoshiro256.hpp b/include/xo/randomgen/xoshiro256.hpp similarity index 100% rename from include/randomgen/xoshiro256.hpp rename to include/xo/randomgen/xoshiro256.hpp