diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2017-09-07 09:54:03 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2017-09-07 09:54:03 +0000 |
commit | b04d84c0678d00616a0d1225281673392210f62e (patch) | |
tree | fddd67cd811f0ce6dc10e811adcaee9bd663ea67 /llvm/tools/llvm-rc/ResourceScriptToken.cpp | |
parent | 0f056352a86f2cfa12c1ed19dc948c351658bf6a (diff) | |
download | bcm5719-llvm-b04d84c0678d00616a0d1225281673392210f62e.tar.gz bcm5719-llvm-b04d84c0678d00616a0d1225281673392210f62e.zip |
Fixing incorrectly capitalised regexps.
Patch by Sam Allen!
llvm-svn: 312709
Diffstat (limited to 'llvm/tools/llvm-rc/ResourceScriptToken.cpp')
-rw-r--r-- | llvm/tools/llvm-rc/ResourceScriptToken.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-rc/ResourceScriptToken.cpp b/llvm/tools/llvm-rc/ResourceScriptToken.cpp index ab46509b394..ba1ed5d416a 100644 --- a/llvm/tools/llvm-rc/ResourceScriptToken.cpp +++ b/llvm/tools/llvm-rc/ResourceScriptToken.cpp @@ -88,7 +88,7 @@ private: // Check if tokenizer can start reading an identifier at current position. // The original tool did non specify the rules to determine what is a correct // identifier. We assume they should follow the C convention: - // [a-zA-z_][a-zA-Z0-9_]*. + // [a-zA-Z_][a-zA-Z0-9_]*. bool canStartIdentifier() const; // Check if tokenizer can continue reading an identifier. bool canContinueIdentifier() const; |