unaligned-memcpy-2.c (dest): Initialize to ensure alignment.
[gcc.git] / libcpp / lex.c
index 570c00733cb10b696edfbb7bcddde51db5d956f9..3e59d40d32e3f1a4a1192276dec5f0b358651b17 100644 (file)
@@ -2298,8 +2298,8 @@ _cpp_lex_direct (cpp_reader *pfile)
                 is neither : nor >, the < is treated as a preprocessor
                 token by itself".  */
              if (CPP_OPTION (pfile, cplusplus)
-                 && (CPP_OPTION (pfile, lang) == CLK_CXX11
-                     || CPP_OPTION (pfile, lang) == CLK_GNUCXX11)
+                 && CPP_OPTION (pfile, lang) != CLK_CXX98
+                 && CPP_OPTION (pfile, lang) != CLK_GNUCXX
                  && buffer->cur[1] == ':'
                  && buffer->cur[2] != ':' && buffer->cur[2] != '>')
                break;