diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-25 14:48:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-25 14:48:44 +0200 |
commit | 019cbb9a324255cccdb5127fdd5d4c1fb502c517 (patch) | |
tree | 6dc953adf940b8221026ee88aac79fccbdbb4c65 /compat | |
parent | 8d1b6796b6c21d12ce0660921999ce9b1e6229a2 (diff) |
compat/math: export logarithmic functions
Diffstat (limited to 'compat')
-rw-r--r-- | compat/math-imports.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/math-imports.hpp b/compat/math-imports.hpp index e4175b16..1aea3ce6 100644 --- a/compat/math-imports.hpp +++ b/compat/math-imports.hpp @@ -29,6 +29,11 @@ using std::tan; using std::round; using std::fmod; +using std::log; +using std::log2; +using std::log10; +using std::exp; + #include <cinttypes> using std::uintptr_t; |