summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-06-26 21:59:27 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-06-26 22:28:22 -0700
commit2f4fc005937e75d931eb6ef87a3fe16364d45113 (patch)
tree2a60ea7b58e9a3045ec0e0754e075ae958e46409 /Makefile.in
parentf5fcb973cfad6221264a2a859f5236c3cef2c470 (diff)
downloadtmwa-2f4fc005937e75d931eb6ef87a3fe16364d45113.tar.gz
tmwa-2f4fc005937e75d931eb6ef87a3fe16364d45113.tar.bz2
tmwa-2f4fc005937e75d931eb6ef87a3fe16364d45113.tar.xz
tmwa-2f4fc005937e75d931eb6ef87a3fe16364d45113.zip
Stick everything in a namespace
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index e2e3bca..a30f5d7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -461,6 +461,8 @@ obj/%.cpp.formatted: src/%.cpp tools/indenter
fgrep -q Copyright $<
fgrep -q $(notdir $<) $<
fgrep -q ../poison.hpp $<
+ grep -q '^namespace tmwa$$' $<
+ grep -q '^} // namespace tmwa$$' $<
touch $@
obj/%.hpp.formatted: src/%.hpp tools/indenter
$(MKDIR_FIRST)
@@ -469,11 +471,15 @@ obj/%.hpp.formatted: src/%.hpp tools/indenter
fgrep -q $(notdir $<) $<
if [[ $< == *fwd* ]]; then fgrep -q ../sanity.hpp $<; else fgrep -q '"fwd.hpp"' $<; fi
if [[ $< == *fwd* ]]; then ! fgrep -q '"fwd.hpp"' $<; else ! fgrep -q ../sanity.hpp $<; fi
+ grep -q '^namespace tmwa$$' $<
+ grep -q '^} // namespace tmwa$$' $<
touch $@
obj/%.tcc.formatted: src/%.tcc tools/indenter
$(MKDIR_FIRST)
apply-filter 'indenter -cpp' $<
fgrep -q Copyright $<
fgrep -q $(notdir $<) $<
+ grep -q '^namespace tmwa$$' $<
+ grep -q '^} // namespace tmwa$$' $<
touch $@
.PHONY: format format-cpp format-hpp