summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-05-12 17:32:42 +0000
committervladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-05-12 17:32:42 +0000
commit5906d27e0c4799ccfe038ae894b4f048ec935bc4 (patch)
treedd63adae43d7f74a7271aecd4819f4ed0cdd2332
parentd305dc16d4ce94a5c7800172f8cb3a0da0250185 (diff)
downloadgoogletest-5906d27e0c4799ccfe038ae894b4f048ec935bc4.tar.gz
Simplifies the code by removing condfitional section that is no longer necessary.
git-svn-id: http://googletest.googlecode.com/svn/trunk@582 861a406c-534a-0410-8894-cb66d6ee9925
-rw-r--r--include/gtest/internal/gtest-internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/gtest/internal/gtest-internal.h b/include/gtest/internal/gtest-internal.h
index 7aa1197..227d818 100644
--- a/include/gtest/internal/gtest-internal.h
+++ b/include/gtest/internal/gtest-internal.h
@@ -797,14 +797,10 @@ struct RemoveConst<const T> { typedef T type; }; // NOLINT
// MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above
// definition to fail to remove the const in 'const int[3]' and 'const
// char[3][4]'. The following specialization works around the bug.
-// However, it causes trouble with GCC and thus needs to be
-// conditionally compiled.
-#if defined(_MSC_VER) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
template <typename T, size_t N>
struct RemoveConst<const T[N]> {
typedef typename RemoveConst<T>::type type[N];
};
-#endif
// A handy wrapper around RemoveConst that works when the argument
// T depends on template parameters.