$NetBSD: patch-storage_ndb_include_util_Parser.hpp,v 1.1 2015/04/16 20:20:15 ryoon Exp $ Avoid C++ error (needed for Clang). --- storage/ndb/include/util/Parser.hpp.orig 2015-02-13 12:07:05.000000000 +0000 +++ storage/ndb/include/util/Parser.hpp @@ -149,12 +149,12 @@ public: static const DummyRow* matchArg(Context*, const char *, const DummyRow *); static bool parseArg(Context*, char*, const DummyRow*, Properties*); static bool checkMandatory(Context*, const Properties*); -private: - const DummyRow * const m_rows; - class ParseInputStream & input; bool m_breakOnEmpty; bool m_breakOnCmd; bool m_breakOnInvalidArg; +private: + const DummyRow * const m_rows; + class ParseInputStream & input; }; template