From 54dfb6459685fe3649c6ed983f30a5966de30f01 Mon Sep 17 00:00:00 2001 From: Avril Date: Tue, 2 Nov 2021 23:41:15 +0000 Subject: [PATCH] Renamed API header & API header location /include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fortune for cpprng's current commit: Future small blessing − 末小吉 --- include/{rng.h => rngxx.h} | 2 +- include/{rng => rngxx}/common.h | 0 include/{rng => rngxx}/crand.h | 0 src/internal/common.h | 2 +- src/rng.cpp | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename include/{rng.h => rngxx.h} (99%) rename include/{rng => rngxx}/common.h (100%) rename include/{rng => rngxx}/crand.h (100%) 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 };