diff options
Diffstat (limited to 'googletest/include/gtest/internal/gtest-port.h')
-rw-r--r-- | googletest/include/gtest/internal/gtest-port.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h index cc6fa6b..619498f 100644 --- a/googletest/include/gtest/internal/gtest-port.h +++ b/googletest/include/gtest/internal/gtest-port.h @@ -689,25 +689,29 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION; // A macro to disallow copy operator= // This should be used in the private: declarations for a class. +// NOLINT is for modernize-use-trailing-return-type in macro uses. #define GTEST_DISALLOW_ASSIGN_(type) \ - type& operator=(type const &) = delete + type& operator=(type const&) = delete /* NOLINT */ // A macro to disallow copy constructor and operator= // This should be used in the private: declarations for a class. +// NOLINT is for modernize-use-trailing-return-type in macro uses. #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type) \ type(type const&) = delete; \ - type& operator=(type const&) = delete + type& operator=(type const&) = delete /* NOLINT */ // A macro to disallow move operator= // This should be used in the private: declarations for a class. +// NOLINT is for modernize-use-trailing-return-type in macro uses. #define GTEST_DISALLOW_MOVE_ASSIGN_(type) \ - type& operator=(type &&) noexcept = delete + type& operator=(type&&) noexcept = delete /* NOLINT */ // A macro to disallow move constructor and operator= // This should be used in the private: declarations for a class. +// NOLINT is for modernize-use-trailing-return-type in macro uses. #define GTEST_DISALLOW_MOVE_AND_ASSIGN_(type) \ type(type&&) noexcept = delete; \ - type& operator=(type&&) noexcept = delete + type& operator=(type&&) noexcept = delete /* NOLINT */ // Tell the compiler to warn about unused return values for functions declared // with this macro. The macro should be used on function declarations |