From d8e59289a4197dc6fe6853bb7708c737126971d8 Mon Sep 17 00:00:00 2001 From: Rashad Kanavath <rashad.kanavath@c-s.fr> Date: Tue, 28 Apr 2015 10:49:15 +0200 Subject: [PATCH] COMP: missing header for atoi --- Modules/Core/Common/test/otbConfigurationManagerTest.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Core/Common/test/otbConfigurationManagerTest.cxx b/Modules/Core/Common/test/otbConfigurationManagerTest.cxx index 54649eb20b..7737ac23c1 100644 --- a/Modules/Core/Common/test/otbConfigurationManagerTest.cxx +++ b/Modules/Core/Common/test/otbConfigurationManagerTest.cxx @@ -16,6 +16,7 @@ =========================================================================*/ #include <iostream> +#include <cstdlib> #include "otbConfigurationManager.h" int otbConfigurationManagerTest(int argc, char * argv[]) @@ -32,7 +33,7 @@ int otbConfigurationManagerTest(int argc, char * argv[]) std::string refDEMDir = (argc>2)?argv[2]:""; std::string refGeoidFile = (argc>3)?argv[3]:""; - + otb::ConfigurationManager::RAMValueType maxRam = otb::ConfigurationManager::GetMaxRAMHint(); std::cout<<"GetMaxRAMHint(): "<<maxRam<<std::endl; -- GitLab