summaryrefslogtreecommitdiffstats
path: root/bin/find-german-comments
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2014-01-02 18:38:55 +0100
committerPhilipp Riemer <ruderphilipp@gmail.com>2014-01-02 18:39:08 +0100
commit05175da8b4c1331e74b9293e3dbce8426df6a7d0 (patch)
tree34e11ebc0c6061a76dc06e965151e832e34ebb00 /bin/find-german-comments
parentIt performs better to use unordered_map than std::map here. (diff)
downloadcore-05175da8b4c1331e74b9293e3dbce8426df6a7d0.tar.gz
core-05175da8b4c1331e74b9293e3dbce8426df6a7d0.zip
fix error in bin/find-german-comments
Change-Id: Ice848243654b1bc8923ba65fe87c61e8087c0d8a
Diffstat (limited to 'bin/find-german-comments')
-rwxr-xr-xbin/find-german-comments2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-german-comments b/bin/find-german-comments
index 59e4c88d0b82..a8a3f2e69e9d 100755
--- a/bin/find-german-comments
+++ b/bin/find-german-comments
@@ -192,7 +192,7 @@ class Parser:
elif not self.options.filenames_only:
for linenum, s in self.get_comments(path):
- if self.is_german(s) and self.options.line_numbers:
+ if self.is_german(s):
print "%s:%s: %s" % (path, linenum, s)
else:
fnames = set([])