astyle formatting

This commit is contained in:
Daniel Marjamäki 2014-03-09 08:49:32 +01:00
parent 7fa73c0d64
commit 4d06bc086d
2 changed files with 8 additions and 4 deletions

View File

@ -730,8 +730,12 @@ public:
void printAst(bool verbose) const;
void printValueFlow() const;
static void isCPP(bool isCPP) { _isCPP = isCPP; }
static bool isCPP() { return _isCPP; }
static void isCPP(bool isCPP) {
_isCPP = isCPP;
}
static bool isCPP() {
return _isCPP;
}
};
/// @}

View File

@ -3987,8 +3987,8 @@ private:
}
void varid_cpp_keywords_in_c_code2() { // #5373
const char code[] = "int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, "
"unsigned long bits, int wake, int delete, struct extent_state **cached_state, "
const char code[] = "int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, "
"unsigned long bits, int wake, int delete, struct extent_state **cached_state, "
"gfp_t mask) {\n"
" struct extent_state *state;\n"
"}"