srctree

Robin Linden parent 5e5d3cc5 0d486dd7
build: Enforce east const

inlinesplit
.clang-format added: 6, removed: 5, total 1
@@ -119,6 +119,7 @@ PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PenaltyIndentedWhitespace: 0
PointerAlignment: Right
QualifierAlignment: Right
ReflowComments: true
SortIncludes: true
SortJavaStaticImport: Before
 
css/parser_test.cpp added: 6, removed: 5, total 1
@@ -27,7 +27,7 @@ namespace {
return os;
}
 
const auto initial_font_values = std::map<std::string, std::string>{{"font-stretch", "normal"},
auto const initial_font_values = std::map<std::string, std::string>{{"font-stretch", "normal"},
{"font-variant", "normal"},
{"font-weight", "normal"},
{"line-height", "normal"},
 
etest/etest.cpp added: 6, removed: 5, total 1
@@ -43,7 +43,7 @@ int run_all_tests() noexcept {
std::cout << std::left << std::setw(longest_name->name.size()) << test.name << ": ";
test_log = std::stringstream{};
 
const int before = assertion_failures;
int const before = assertion_failures;
 
try {
test.body();