diff --git a/docpages/example_code/coding_style_standards/comments.cpp b/docpages/example_code/coding_style_standards/comments.cpp index c172f087bf..18a41158fb 100644 --- a/docpages/example_code/coding_style_standards/comments.cpp +++ b/docpages/example_code/coding_style_standards/comments.cpp @@ -24,4 +24,4 @@ int main() { * Because why not. That's why. */ std::cout << name_to_meme("Brain") << "\n"; -} \ No newline at end of file +} diff --git a/docpages/example_code/coding_style_standards/curly_braces.cpp b/docpages/example_code/coding_style_standards/curly_braces.cpp index 9e7b28114a..02662f6436 100644 --- a/docpages/example_code/coding_style_standards/curly_braces.cpp +++ b/docpages/example_code/coding_style_standards/curly_braces.cpp @@ -17,4 +17,4 @@ void foo() { d(); break; } -} \ No newline at end of file +} diff --git a/docpages/example_code/coding_style_standards/dot_notation.cpp b/docpages/example_code/coding_style_standards/dot_notation.cpp index f9cfa84922..2c0a410bfb 100644 --- a/docpages/example_code/coding_style_standards/dot_notation.cpp +++ b/docpages/example_code/coding_style_standards/dot_notation.cpp @@ -2,4 +2,4 @@ stuff{} .add_stuff() .add_stuff(); -event.reply("This reply function isn't indented!"); \ No newline at end of file +event.reply("This reply function isn't indented!"); diff --git a/docpages/example_code/coding_style_standards/fluent_design.cpp b/docpages/example_code/coding_style_standards/fluent_design.cpp index dc7faa9d77..8a9d55c101 100644 --- a/docpages/example_code/coding_style_standards/fluent_design.cpp +++ b/docpages/example_code/coding_style_standards/fluent_design.cpp @@ -15,4 +15,4 @@ my_new_class& my_new_class::set_hats(int new_hats) { my_new_class& my_new_class::set_clowns(int new_clowns) { clowns = new_clowns; return *this; -} \ No newline at end of file +} diff --git a/docpages/example_code/coding_style_standards/fluent_design2.cpp b/docpages/example_code/coding_style_standards/fluent_design2.cpp index 87223b126d..fa2416f438 100644 --- a/docpages/example_code/coding_style_standards/fluent_design2.cpp +++ b/docpages/example_code/coding_style_standards/fluent_design2.cpp @@ -1,2 +1,2 @@ dpp::my_new_class nc; -nc.set_hats(3).set_clowns(9001); \ No newline at end of file +nc.set_hats(3).set_clowns(9001); diff --git a/docpages/example_code/coding_style_standards/lists.cpp b/docpages/example_code/coding_style_standards/lists.cpp index 91abeac6a9..b67a80d5ff 100644 --- a/docpages/example_code/coding_style_standards/lists.cpp +++ b/docpages/example_code/coding_style_standards/lists.cpp @@ -1,3 +1,3 @@ std::vector clowns = { "pennywise", "bobo" }; -evaluate_clown(clowns[0], evilness(2.5, factor)); \ No newline at end of file +evaluate_clown(clowns[0], evilness(2.5, factor)); diff --git a/docpages/example_code/coding_style_standards/symbol_exporting.cpp b/docpages/example_code/coding_style_standards/symbol_exporting.cpp index 19c8760d31..f37e9cf7f0 100644 --- a/docpages/example_code/coding_style_standards/symbol_exporting.cpp +++ b/docpages/example_code/coding_style_standards/symbol_exporting.cpp @@ -2,4 +2,4 @@ class DPP_EXPORT my_new_class { public: int hats; int clowns; -}; \ No newline at end of file +};