Skip to content

Commit b18b037

Browse files
committed
Enable -Werror
1 parent 219c76e commit b18b037

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LOCALES = de en en_GB es fr pt pl ro ru uk
3333
SYMBOLS := TRUE
3434
DEBUGGER := TRUE
3535
# -gno-column-info is a workaround for Debugger issue (#15159)
36-
COMPILER_FLAGS = -gno-column-info -std=c++17
36+
COMPILER_FLAGS = -gno-column-info -std=c++17 -Werror
3737

3838
## Include the Makefile-Engine
3939
DEVEL_DIRECTORY := \

src/support/Styler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ CSSToInt(const std::string cssColor)
4848
template<>
4949
struct convert<Styler::Style> {
5050
static Node encode(const Styler::Style& rhs) {
51-
// TODO
51+
return Node();
5252
}
5353

5454
static bool decode(const Node& node, Styler::Style& rhs) {

0 commit comments

Comments
 (0)