Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include rules.mk
.PHONY: force all clean test-compile test coverage manpages test-install clean-install
.DEFAULT_GOAL = all

CXXFLAGS += -g -std=c++2a -Isrc -Wall -Wextra -Wpedantic
CXXFLAGS += -g -std=c++2a -Wall -Wextra -Wpedantic

all: $(call Executable_file,jurand)

Expand Down
1 change: 0 additions & 1 deletion compile_flags.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-std=c++2a
-Isrc
-Wall
-Wextra
-Wpedantic
2 changes: 1 addition & 1 deletion src/jurand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <utility>
#include <atomic>

#include <java_symbols.hpp>
#include "java_symbols.hpp"

using namespace java_symbols;

Expand Down
2 changes: 1 addition & 1 deletion src/jurand_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <iostream>
#include <sstream>

#include <java_symbols.hpp>
#include "java_symbols.hpp"

using namespace java_symbols;

Expand Down