diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-03-16 15:51:47 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-03-16 15:51:47 +0800 |
commit | f17b88b0b9704e6dd2bc37d5ba60523e4b117b31 (patch) | |
tree | 0dc8c6c6d4d19344d9a6e234cc272b84a846bd1a | |
parent | 7c5640b2bc429475e0b9d112d78e17217a9541c8 (diff) | |
download | tangerine-mcl-f17b88b0b9704e6dd2bc37d5ba60523e4b117b31.tar.gz tangerine-mcl-f17b88b0b9704e6dd2bc37d5ba60523e4b117b31.tar.zst tangerine-mcl-f17b88b0b9704e6dd2bc37d5ba60523e4b117b31.zip |
move conversion.hpp from include to src
-rw-r--r-- | sample/bench.cpp | 2 | ||||
-rw-r--r-- | src/conversion.hpp (renamed from include/mcl/conversion.hpp) | 0 | ||||
-rw-r--r-- | src/fp.cpp | 2 | ||||
-rw-r--r-- | test/base_test.cpp | 2 | ||||
-rw-r--r-- | test/fp_util_test.cpp | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/sample/bench.cpp b/sample/bench.cpp index 6aecf19..a1bc151 100644 --- a/sample/bench.cpp +++ b/sample/bench.cpp @@ -2,7 +2,7 @@ #include <cybozu/option.hpp> #include <cybozu/xorshift.hpp> #include <mcl/fp.hpp> -#include <mcl/conversion.hpp> +#include "../src/conversion.hpp" #include <mcl/ecparam.hpp> typedef mcl::FpT<> Fp; diff --git a/include/mcl/conversion.hpp b/src/conversion.hpp index 2383efd..2383efd 100644 --- a/include/mcl/conversion.hpp +++ b/src/conversion.hpp @@ -1,6 +1,6 @@ #include <mcl/op.hpp> #include <mcl/util.hpp> -#include <mcl/conversion.hpp> +#include "conversion.hpp" #ifdef MCL_USE_XBYAK #include "fp_generator.hpp" #endif diff --git a/test/base_test.cpp b/test/base_test.cpp index 30410c2..7167763 100644 --- a/test/base_test.cpp +++ b/test/base_test.cpp @@ -5,7 +5,7 @@ #include <cybozu/benchmark.hpp> #include <cybozu/xorshift.hpp> #include <cybozu/bit_operation.hpp> -#include <mcl/conversion.hpp> +#include "conversion.hpp" #include <mcl/fp.hpp> #include "fp_generator.hpp" diff --git a/test/fp_util_test.cpp b/test/fp_util_test.cpp index bff94af..ec0419f 100644 --- a/test/fp_util_test.cpp +++ b/test/fp_util_test.cpp @@ -1,5 +1,5 @@ #define PUT(x) std::cout << #x "=" << (x) << std::endl -#include <mcl/conversion.hpp> +#include "../src/conversion.hpp" #include <cybozu/test.hpp> CYBOZU_TEST_AUTO(toStr16) |