Home | History | Annotate | Download | only in gtest

Lines Matching refs:CompileAssert

1919 struct CompileAssert {
1923 typedef ::testing::internal::CompileAssert<(static_cast<bool>(expr))> \
1944 // - By using the type CompileAssert<(bool(expr))>, we ensures that
1948 // - The outter parentheses in CompileAssert<(bool(expr))> are necessary
1951 // CompileAssert<bool(expr)>