fixed clang++ warning: lib/path.cpp:80:2: warning: no newline at end of file [-pedantic]

This commit is contained in:
Ettl Martin 2010-09-16 21:39:17 +02:00
parent f843678a07
commit f6e75b5542
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
CXXFLAGS=-Wall -Wextra -Wshadow -pedantic -Wno-long-long -Wfloat-equal -Wcast-qual -Wsign-conversion -g
CXX=g++
CXX=clang++
BIN=${DESTDIR}/usr/bin
# For 'make man': sudo apt-get install xsltproc docbook-xsl docbook-xml

View File

@ -77,4 +77,4 @@ std::string Path::simplifyPath(const std::string &path)
}
return f;
}
}