diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-17 22:39:56 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-18 00:13:18 -0700 |
commit | df62950e7a32031b82360c407d46a37b94188fbb (patch) | |
tree | 038bf95a2ce296ae3e0c30a131ac22c0986f0f52 /runtime/utils.h | |
parent | 0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c (diff) | |
download | art-df62950e7a32031b82360c407d46a37b94188fbb.zip art-df62950e7a32031b82360c407d46a37b94188fbb.tar.gz art-df62950e7a32031b82360c407d46a37b94188fbb.tar.bz2 |
Fix cpplint whitespace/parens issues
Change-Id: Ifc678d59a8bed24ffddde5a0e543620b17b0aba9
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index a08e465..72597f5 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -352,18 +352,18 @@ bool IsValidOatFilename(const std::string& filename); class VoidFunctor { public: template <typename A> - inline void operator () (A a) const { + inline void operator() (A a) const { UNUSED(a); } template <typename A, typename B> - inline void operator () (A a, B b) const { + inline void operator() (A a, B b) const { UNUSED(a); UNUSED(b); } template <typename A, typename B, typename C> - inline void operator () (A a, B b, C c) const { + inline void operator() (A a, B b, C c) const { UNUSED(a); UNUSED(b); UNUSED(c); |