mirror of https://gitlab.com/cppit/libclangmm
35 changed files with 517 additions and 475 deletions
@ -0,0 +1,9 @@ |
|||||||
|
IndentWidth: 2 |
||||||
|
AccessModifierOffset: -2 |
||||||
|
UseTab: Never |
||||||
|
ColumnLimit: 0 |
||||||
|
MaxEmptyLinesToKeep: 2 |
||||||
|
SpaceBeforeParens: Never |
||||||
|
BreakBeforeBraces: Custom |
||||||
|
BraceWrapping: {BeforeElse: true, BeforeCatch: true} |
||||||
|
NamespaceIndentation: All |
||||||
@ -1,17 +1,17 @@ |
|||||||
#ifndef CLANGMM_H_ |
#ifndef CLANGMM_H_ |
||||||
#define CLANGMM_H_ |
#define CLANGMM_H_ |
||||||
#include "translation_unit.h" |
#include "code_complete_results.h" |
||||||
#include "source_location.h" |
|
||||||
#include "source_range.h" |
|
||||||
#include "token.h" |
|
||||||
#include "tokens.h" |
|
||||||
#include "compilation_database.h" |
#include "compilation_database.h" |
||||||
#include "compile_commands.h" |
|
||||||
#include "compile_command.h" |
#include "compile_command.h" |
||||||
#include "code_complete_results.h" |
#include "compile_commands.h" |
||||||
#include "completion_string.h" |
#include "completion_string.h" |
||||||
#include "index.h" |
|
||||||
#include "cursor.h" |
#include "cursor.h" |
||||||
#include "diagnostic.h" |
#include "diagnostic.h" |
||||||
|
#include "index.h" |
||||||
|
#include "source_location.h" |
||||||
|
#include "source_range.h" |
||||||
|
#include "token.h" |
||||||
|
#include "tokens.h" |
||||||
|
#include "translation_unit.h" |
||||||
#include "utility.h" |
#include "utility.h" |
||||||
#endif // CLANGMM_H_
|
#endif // CLANGMM_H_
|
||||||
|
|||||||
Loading…
Reference in new issue