Skip to content

Commit

Permalink
Refs #11400. Change warning flag for rhel6. remove extra ;.
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumsteve committed Mar 24, 2015
1 parent d58d190 commit 9d13c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Build/CMake/GNUSetup.cmake
Expand Up @@ -15,7 +15,7 @@ elseif ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" )
endif()

# Global warning flags.
set( GNUFLAGS "-Wall -Wextra -Wpedantic -Wconversion -Winit-self -Wpointer-arith -Wcast-qual -Wcast-align -fno-common" )
set( GNUFLAGS "-Wall -Wextra -pedantic -Wconversion -Winit-self -Wpointer-arith -Wcast-qual -Wcast-align -fno-common" )
# Disable some warnings about deprecated headers and type conversions that
# we can't do anything about
# -Wno-deprecated: Do not warn about use of deprecated headers.
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/CurveFitting/src/PawleyFit.cpp
Expand Up @@ -18,7 +18,7 @@ using namespace API;
using namespace Kernel;
using namespace Geometry;

DECLARE_ALGORITHM(PawleyFit);
DECLARE_ALGORITHM(PawleyFit)

/// Default constructor
PawleyFit::PawleyFit() : Algorithm(), m_dUnit() {}
Expand Down

0 comments on commit 9d13c55

Please sign in to comment.