Skip to content
Snippets Groups Projects
Commit 4135894b authored by Luc Hermitte's avatar Luc Hermitte
Browse files

ENH: new files to ignore for hg

parent 5640b6a3
No related branches found
No related tags found
No related merge requests found
......@@ -5,4 +5,7 @@ syntax: glob
*.pyc
.\#*
\#*\#
tags
*vim*
*.template
......@@ -163,12 +163,8 @@ namespace otb
{ \
command; \
} \
catch (std::bad_alloc& err) { \
throw err; } \
catch (itk::ExceptionObject& e) { \
throw e; } \
catch (const std::exception& stde) { \
throw stde; } \
throw ; } \
catch (...) \
{ \
std::ostringstream message; \
......@@ -179,6 +175,14 @@ namespace otb
std::cout << " Checking valid command " << # command " ok." << std::endl; \
}
#define otbGenericExceptionMacro(T, x) \
{ \
::itk::OStringStream message; \
message << "otb::ERROR: " x; \
T e_(__FILE__, __LINE__, message.str(),ITK_LOCATION); \
throw e_;\
}
#define otbTestingCheckNotValidCommand(command) \
{ \
int result(1); \
......
......@@ -105,6 +105,9 @@ if (Boost_FIND_VERSION_EXACT)
endif (Boost_FIND_VERSION_PATCH)
else (Boost_FIND_VERSION_EXACT)
set( _boost_TEST_VERSIONS ${Boost_ADDITIONAL_VERSIONS}
"1.49.0" "1.49" "1.48.0" "1.48" "1.47.0" "1.47" "1.46.0" "1.46" "1.45.0"
"1.45" "1.44.0" "1.44" "1.43.0" "1.43" "1.42.0" "1.42"
"1.41.0" "1.41" "1.40.0" "1.40" "1.39.0" "1.39" "1.38.0" "1.38" "1.37.0" "1.37"
"1.36.1" "1.36.0" "1.36" "1.35.1" "1.35.0" "1.35" "1.34.1" "1.34.0"
"1.34" "1.33.1" "1.33.0" "1.33" )
endif (Boost_FIND_VERSION_EXACT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment