diff options
author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-02-23 13:14:25 +0200 |
---|---|---|
committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-02-23 13:14:25 +0200 |
commit | 6926a6977dfb6a1b0ad1ea2dc5f318c96a605743 (patch) | |
tree | 29a44dab2e389bd1417ffc5c2e8f870ffebc8e94 /indra/llimage/llimage.cpp | |
parent | 32bb73eff4afd86c13464606255e8f2d976d3d2e (diff) |
MAINT-4329 FIXED LLImageRaw::scale() scales each image *twice* for no apparent reason
Linux & OS X compile error fix
Diffstat (limited to 'indra/llimage/llimage.cpp')
-rwxr-xr-x | indra/llimage/llimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index 2da9aabcd4..9a4025af4b 100755 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -86,7 +86,7 @@ #define UNROLL_GEN_TPL(name, args_seq, operation, spec_seq) \ /*general specialization - should not be implemented!*/ \ - template<U8> struct name { inline void operator()(_UNROL_GEN_TPL_TYPE_ARGS(args_seq)) { boost::static_assert(!"Should not be instantiated."); } }; \ + template<U8> struct name { inline void operator()(_UNROL_GEN_TPL_TYPE_ARGS(args_seq)) { BOOST_STATIC_ASSERT(false, "Should not be instantiated."); } }; \ BOOST_PP_SEQ_FOR_EACH(_UNROLL_GEN_TPL_foreach_seq_macro, (name)(args_seq)(operation), spec_seq) //.................................................................................. //.................................................................................. |