diff options
| author | Richard Linden <none@none> | 2012-09-12 16:16:49 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2012-09-12 16:16:49 -0700 | 
| commit | 56f74728169b1bba0590cb565da043b6c7172675 (patch) | |
| tree | bc09c3db217332a4f8d7c7185b543372a8b65ec7 /indra/llcommon | |
| parent | 1c666b5f108129a5f64465639896caf0f67aec0d (diff) | |
MAINT-1556 FIX LLSD param blocks should accept enum values
fix for gcc builds
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/llinitparam.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/llinitparam.h b/indra/llcommon/llinitparam.h index fb12d1df82..0dd6030fa2 100644 --- a/indra/llcommon/llinitparam.h +++ b/indra/llcommon/llinitparam.h @@ -224,7 +224,7 @@ namespace LLInitParam  		typedef std::map<const std::type_info*, parser_inspect_func_t>	parser_inspect_func_map_t;  	private: -		template<typename T, bool is_enum = BOOST_IS_ENUM(T)> +		template<typename T, bool is_enum = boost::is_enum<T>::value>  		struct ReaderWriter  		{  			static bool read(T& param, Parser* parser) | 
