Skip to content

Commit

Permalink
libdeng2: Adhere to a pedantic compiler warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 1, 2012
1 parent 93cff74 commit f709249
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/CommandLine
@@ -1 +1 @@
#include "core/commandline.h"
#include "core/commandline.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/DirectoryFeed
@@ -1 +1 @@
#include "filesys/directoryfeed.h"
#include "filesys/directoryfeed.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/File
@@ -1 +1 @@
#include "filesys/file.h"
#include "filesys/file.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/Guard
@@ -1 +1 @@
#include "data/guard.h"
#include "data/guard.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/Socket
@@ -1 +1 @@
#include "net/socket.h"
#include "net/socket.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/TextValue
@@ -1 +1 @@
#include "data/textvalue.h"
#include "data/textvalue.h"
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/UnixInfo
@@ -1 +1 @@
#include "core/unixinfo.h"
#include "core/unixinfo.h"
5 changes: 3 additions & 2 deletions doomsday/libdeng2/libdeng2.pro
Expand Up @@ -41,9 +41,10 @@ win32 {
}

# Enable strict warnings for C++ code.
*-g++ {
QMAKE_CXXFLAGS_WARN_ON *= -Wall -Wextra -pedantic -Wno-long-long
*-g++|*-clang* {
QMAKE_CXXFLAGS_WARN_ON *= -Wall -Wextra -pedantic
}
*-g++: QMAKE_CXXFLAGS_WARN_ON *= -Wno-long-long
win32-msvc* {
#QMAKE_CXXFLAGS_WARN_ON ~= s/-W3/-W4/
}
Expand Down

0 comments on commit f709249

Please sign in to comment.