diff --git a/include/rng.h b/include/rngxx.h similarity index 99% rename from include/rng.h rename to include/rngxx.h index 7b193b0..8944e1e 100644 --- a/include/rng.h +++ b/include/rngxx.h @@ -6,7 +6,7 @@ #include -#include "rng/common.h" +#include "rngxx/common.h" #define CTOR_COPY(name) name(const name& copy) #define CTOR_MOVE(name) name(name&& move) diff --git a/include/rng/common.h b/include/rngxx/common.h similarity index 100% rename from include/rng/common.h rename to include/rngxx/common.h diff --git a/include/rng/crand.h b/include/rngxx/crand.h similarity index 100% rename from include/rng/crand.h rename to include/rngxx/crand.h diff --git a/src/internal/common.h b/src/internal/common.h index 25c7947..df8e6f3 120000 --- a/src/internal/common.h +++ b/src/internal/common.h @@ -1 +1 @@ -../../include/rng/common.h \ No newline at end of file +../../include/rngxx/common.h \ No newline at end of file diff --git a/src/rng.cpp b/src/rng.cpp index 62f467a..333ede1 100644 --- a/src/rng.cpp +++ b/src/rng.cpp @@ -1,5 +1,5 @@ -#include +#include #include constexpr const static util::range SAMPLE_RANGE { 0.0, 1.0 };