Skip to content

Commit d3f32ca

Browse files
committed
ProgramOptions: Remove obsolete GCC version check.
[SVN r86115]
1 parent da03a78 commit d3f32ca

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

include/boost/program_options/detail/value_semantic.hpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,9 @@ namespace boost { namespace program_options {
105105
int);
106106
#endif
107107
// For some reason, this declaration, which is require by the standard,
108-
// cause gcc 3.2 to not generate code to specialization defined in
108+
// cause msvc 7.1 to not generate code to specialization defined in
109109
// value_semantic.cpp
110-
#if ! ( ( BOOST_WORKAROUND(__GNUC__, <= 3) &&\
111-
BOOST_WORKAROUND(__GNUC_MINOR__, < 3) ) || \
112-
( BOOST_WORKAROUND(BOOST_MSVC, == 1310) ) \
113-
)
110+
#if ! ( BOOST_WORKAROUND(BOOST_MSVC, == 1310) )
114111
BOOST_PROGRAM_OPTIONS_DECL void validate(boost::any& v,
115112
const std::vector<std::string>& xs,
116113
std::string*,

0 commit comments

Comments
 (0)