diff options
| -rw-r--r-- | gcc/d/types.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/d/types.cc b/gcc/d/types.cc index 3b121f5..ba2d6d4 100644 --- a/gcc/d/types.cc +++ b/gcc/d/types.cc @@ -874,7 +874,7 @@ public: Type *underlying = NULL; /* Skip over the prefixing `__c_'. */ - gcc_assert (strncmp (ident, "__c_", strlen ("__c_")) == 0); + gcc_assert (startswith (ident, "__c_")); ident = ident + strlen ("__c_"); /* To keep things compatible within the code generation we stick to |
