From 67be1cc36680d8a16da59b97d5a2f0aaa13a7045 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Tue, 12 Apr 2016 15:53:04 +0900 Subject: Fix build error [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 --- boost/pool/pool.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boost/pool/pool.hpp') 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::value + sizeof(size_type); + size_type POD_size = integer::static_lcm::value + sizeof(size_type); size_type max_chunks = (std::numeric_limits::max() - POD_size) / alloc_size(); return max_chunks; -- cgit v1.2.3