From 04a6b550aa52c7dbdacd6c0e417437014385128b Mon Sep 17 00:00:00 2001 From: "kazushi.kawamura" Date: Mon, 19 Aug 2019 19:29:12 +0900 Subject: [PATCH] fix a little --- solver_soft/Makefile | 2 +- solver_soft/solver.cpp | 0 solver_soft/solver.hpp | 0 solver_soft/tools.hpp | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 solver_soft/Makefile mode change 100755 => 100644 solver_soft/solver.cpp mode change 100755 => 100644 solver_soft/solver.hpp diff --git a/solver_soft/Makefile b/solver_soft/Makefile old mode 100755 new mode 100644 index 281361b..9a19afd --- a/solver_soft/Makefile +++ b/solver_soft/Makefile @@ -2,7 +2,7 @@ TARGET = sim OBJS = $(CPPS:.cpp=.o) CPPS = $(wildcard *.cpp) CXX = g++ -CXXFLAGS = -O3 +CXXFLAGS = -std=c++11 -O3 all: $(TARGET) diff --git a/solver_soft/solver.cpp b/solver_soft/solver.cpp old mode 100755 new mode 100644 diff --git a/solver_soft/solver.hpp b/solver_soft/solver.hpp old mode 100755 new mode 100644 diff --git a/solver_soft/tools.hpp b/solver_soft/tools.hpp index 4ffdb2a..9470619 100644 --- a/solver_soft/tools.hpp +++ b/solver_soft/tools.hpp @@ -13,4 +13,4 @@ void usage(); void output_to_file(char *f_name, short int line_num, short int blocks, short int wi, short int hi, short int board[], pair block_place[]); void show_result(short int line_num, short int blocks, short int wi, short int hi, short int board[], pair block_place[]); -#endif /* __TOOLS_HPP__ */ \ No newline at end of file +#endif /* __TOOLS_HPP__ */ -- 2.22.0