diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 08:24:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 10:33:25 +0200 |
commit | d8e21f0400c5ae77e388ef81b7fcad9f65401c65 (patch) | |
tree | f4c977c2ea72c09925426b6af73759dd958a58f6 /compilerplugins | |
parent | a866478d92e9972b1c3f52b399bfadf7aacfd396 (diff) |
compilerplugins: get rid of std::auto_ptr in comment
Change-Id: Ia2b1bc97f3476da7bfbe659e5160cd5c73c01ce5
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/unusedvariablecheck.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/unusedvariablecheck.cxx b/compilerplugins/clang/unusedvariablecheck.cxx index caa16b1fe446..cc3741759a33 100644 --- a/compilerplugins/clang/unusedvariablecheck.cxx +++ b/compilerplugins/clang/unusedvariablecheck.cxx @@ -30,7 +30,7 @@ Check for unused classes where the compiler cannot decide (e.g. because of non-trivial or extern ctors) if a variable is unused if only its ctor/dtor are called and nothing else. For example std::vector is a class where the ctor may call further functions, but an unused std::string variable -does nothing. On the other hand, std::auto_ptr instances are used +does nothing. On the other hand, std::lock_guard instances are used for their dtors and so are not unused even if not otherwise accessed. Classes which are safe to be warned about need to be marked using |