aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/include
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2020-03-17 16:58:55 -0400
committervslashg <gfalcon@google.com>2020-03-17 17:20:47 -0400
commit482ac6ee63429af2aa9c44f4e6427873fb68fb1f (patch)
tree00e13ffb5285d8b46dd5e5e301f86e2299a4bc8b /googletest/include
parentc43f7100f084db17197c34c2d776ad2973dbf539 (diff)
downloadgoogletest-482ac6ee63429af2aa9c44f4e6427873fb68fb1f.tar.gz
googletest-482ac6ee63429af2aa9c44f4e6427873fb68fb1f.tar.bz2
googletest-482ac6ee63429af2aa9c44f4e6427873fb68fb1f.zip
Googletest export
Move internal function out of header because Hyrum's law always wins. PiperOrigin-RevId: 301446904
Diffstat (limited to 'googletest/include')
-rw-r--r--googletest/include/gtest/gtest.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h
index 88712076..0139fccf 100644
--- a/googletest/include/gtest/gtest.h
+++ b/googletest/include/gtest/gtest.h
@@ -1807,12 +1807,6 @@ class GTEST_API_ AssertHelper {
GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
};
-enum class GTestColor { kDefault, kRed, kGreen, kYellow };
-
-GTEST_API_ GTEST_ATTRIBUTE_PRINTF_(2, 3) void ColoredPrintf(GTestColor color,
- const char* fmt,
- ...);
-
} // namespace internal
// The pure interface class that all value-parameterized tests inherit from.