diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-09-02 12:50:37 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-09-02 12:51:01 +0200 |
commit | a340cd118ef1765d14df62f8291d2f2c0c2361de (patch) | |
tree | a6f7acf78a68a0934e89f155fc44e572ed78f375 /src/shared/cplusplus/Control.cpp | |
parent | c12866a467459f51e33252d5629edb8fbcd2201a (diff) | |
download | qt-creator-a340cd118ef1765d14df62f8291d2f2c0c2361de.tar.gz |
Get rid of the numeric literals.
Diffstat (limited to 'src/shared/cplusplus/Control.cpp')
-rw-r--r-- | src/shared/cplusplus/Control.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Control.cpp b/src/shared/cplusplus/Control.cpp index 14e302a039..647b17ce35 100644 --- a/src/shared/cplusplus/Control.cpp +++ b/src/shared/cplusplus/Control.cpp @@ -754,3 +754,8 @@ bool Control::hasSymbol(Symbol *symbol) const { return std::find(d->symbols.begin(), d->symbols.end(), symbol) != d->symbols.end(); } + +void Control::squeeze() +{ + d->numericLiterals.reset(); +} |