diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-31 22:25:36 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-02-01 11:08:45 +0100 |
commit | 5acfb93c6461589bcb5b92ae363b0aed6424b9a2 (patch) | |
tree | 6774201ea80fc47066e3e4b697df28a78e61a330 /compilerplugins | |
parent | 01c43770b75fd4e48b2cda230feda37154f75bdd (diff) |
Fix typos
Change-Id: Icb4f4d9039278318d5f7f6302d57957b2c02bdb8
Reviewed-on: https://gerrit.libreoffice.org/49069
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/test/unusedfields.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compilerplugins/clang/test/unusedfields.cxx b/compilerplugins/clang/test/unusedfields.cxx index 21e59fcbbdd1..db71aeb199e4 100644 --- a/compilerplugins/clang/test/unusedfields.cxx +++ b/compilerplugins/clang/test/unusedfields.cxx @@ -57,10 +57,10 @@ struct Bar // check that we don't see reads when inside copy/move assignment operator Bar& operator=(Bar const & other) { m_bar3 = other.m_bar3; return *this; } - // check that we DONT see reads here + // check that we DON'T see reads here int bar2() { return m_bar2; } - // check that we DONT see reads here + // check that we DON'T see reads here void bar3() { m_bar3 = nullptr; @@ -130,7 +130,7 @@ struct ReadOnlyAnalysis int m_f5; int m_f6; - // check that we dont see a write of m_f1 + // check that we don't see a write of m_f1 ReadOnlyAnalysis() : m_f1(0) {} void method1(int&); |