Skip to content

Commit

Permalink
Merge pull request #40 from glebm/patch-1
Browse files Browse the repository at this point in the history
Add "-std=c++98" to CXXFLAGS in Makefile
  • Loading branch information
mgreter committed Jun 16, 2019
2 parents 1e41b05 + 475044d commit 7709939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $(CXX) ?= g++

all: sass2scss

CXXFLAGS = -DSASS2SCSS_VERSION="\"$(SASS2SCSS_VERSION)\""
CXXFLAGS = -std=c++98 -DSASS2SCSS_VERSION="\"$(SASS2SCSS_VERSION)\""

sass2scss.o: sass2scss.cpp
$(CXX) $(CXXFLAGS) -Wall -c sass2scss.cpp
Expand Down

0 comments on commit 7709939

Please sign in to comment.