From 22567d107fffe7a6833b96cc99d531e5303b47dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Sat, 25 Mar 2017 19:12:18 +0100 Subject: Add clang format & skip build if no source file modified (#5433) * [BUILD] Add clang format + build skipping * Add clang-format tool to check codestyle. Warning: it check the whole modified file, not the diff part, it's why it's lazy. Please also look if rules are perfect, i take the Linux codestyle from LLVM site Fix issue #5415 * Skip building project if no file is modified * Fix a wrong brace to trigger LINT * Make lint step outside of unix build scope * Add AccessModifierOffset: -8 * Typo fix & needs compile fix * Fix header priorities --- src/nameidmapping.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/nameidmapping.h') diff --git a/src/nameidmapping.h b/src/nameidmapping.h index 23838c8ff..a0336864b 100644 --- a/src/nameidmapping.h +++ b/src/nameidmapping.h @@ -32,10 +32,12 @@ public: void serialize(std::ostream &os) const; void deSerialize(std::istream &is); - void clear(){ + void clear() + { m_id_to_name.clear(); m_name_to_id.clear(); } + void set(u16 id, const std::string &name){ m_id_to_name[id] = name; m_name_to_id[name] = id; -- cgit v1.2.3