diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-11-25 23:03:50 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-11-25 23:37:56 -0300 |
commit | 630823e3630f2bb77a3a5e4aa0f8f87859d05ee1 (patch) | |
tree | 27934d718688e07bea205e85bdc3968a5f4bf461 /src/common/CMakeLists.txt | |
parent | 0e15c68f54ae5217e6247603b9e31757515f89e1 (diff) |
common: Add Common::DivCeil and Common::DivCeilLog2
Add an equivalent to 'Common::AlignUp(n, d) / d' and a log2 alternative.
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index d20e6c3b5..56c7e21f5 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -112,6 +112,7 @@ add_library(common STATIC common_paths.h common_types.h concepts.h + div_ceil.h dynamic_library.cpp dynamic_library.h fiber.cpp |