# HG changeset patch # User iignatyev # Date 1474493330 -10800 # Thu Sep 22 00:28:50 2016 +0300 # Node ID 5e72fd3165ab1e1b4720561c331684452b19f6cd # Parent b7c5288424c8c505070ed9dd460f1a17c54495a5 8166483: gtest fmw should be updated to support null detection on SS >= 12u4 Reviewed-by: duke diff --git a/test/fmw/gtest/include/gtest/internal/gtest-port.h b/test/fmw/gtest/include/gtest/internal/gtest-port.h --- a/test/fmw/gtest/include/gtest/internal/gtest-port.h +++ b/test/fmw/gtest/include/gtest/internal/gtest-port.h @@ -1586,12 +1586,13 @@ GTEST_API_ size_t GetThreadCount(); // Passing non-POD classes through ellipsis (...) crashes the ARM -// compiler and generates a warning in Sun Studio. The Nokia Symbian +// compiler and generates a warning in Sun Studio before 12u4. The Nokia Symbian // and the IBM XL C/C++ compiler try to instantiate a copy constructor // for objects passed through ellipsis (...), failing for uncopyable // objects. We define this to ensure that only POD is passed through // ellipsis on these systems. -#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) +#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || \ + (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5130) // We lose support for NULL detection where the compiler doesn't like // passing non-POD classes through ellipsis (...). # define GTEST_ELLIPSIS_NEEDS_POD_ 1