diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-04-12 15:53:04 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-04-12 15:53:04 +0900 |
commit | 67be1cc36680d8a16da59b97d5a2f0aaa13a7045 (patch) | |
tree | 3068301439c13b655499c2f6985d71e4cfac0af6 | |
parent | b5dd5bc111e024db8b08b14ebfb6e0dc356884b6 (diff) | |
download | boost-67be1cc36680d8a16da59b97d5a2f0aaa13a7045.tar.gz boost-67be1cc36680d8a16da59b97d5a2f0aaa13a7045.tar.bz2 boost-67be1cc36680d8a16da59b97d5a2f0aaa13a7045.zip |
Fix build errorsubmit/tizen/20160412.075459
[Model] All
[BinType] AP
[Customer] OPEN
[Issue#] N/A
[Request] N/A
[Occurrence Version] N/A
[Problem] build error at pool.hpp
./boost/pool/pool.hpp:361:28: error: 'math' has not been declared
[Cause & Measure] Invalid merge at "Bump to 1.58.0"
[Checking Method] build test
[Team] Open Source Management and Setting Part
[Developer] dh0128.kwak
[Solution company] Samsung
[Change Type] N/A
Change-Id: I626490e3ea85450441b704bef3d646813f053ad0
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
-rw-r--r-- | boost/pool/pool.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/pool/pool.hpp b/boost/pool/pool.hpp index 8fb1878c69..fe69c4fae7 100644 --- a/boost/pool/pool.hpp +++ b/boost/pool/pool.hpp @@ -358,7 +358,7 @@ class pool: protected simple_segregated_storage < typename UserAllocator::size_t size_type max_chunks() const { //! Calculated maximum number of memory chunks that can be allocated in a single call by this Pool. size_type partition_size = alloc_size(); - size_type POD_size = math::static_lcm<sizeof(size_type), sizeof(void *)>::value + sizeof(size_type); + size_type POD_size = integer::static_lcm<sizeof(size_type), sizeof(void *)>::value + sizeof(size_type); size_type max_chunks = (std::numeric_limits<size_type>::max() - POD_size) / alloc_size(); return max_chunks; |