Skip to content

Commit

Permalink
Refs #10838. Suppress additional gcc warnings. Fix remaining warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumsteve committed Dec 19, 2014
1 parent 5369bb4 commit a3654ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Code/Mantid/Build/CMake/CommonSetup.cmake
Expand Up @@ -242,7 +242,10 @@ endif ()
if ( CMAKE_COMPILER_IS_GNUCXX )
include ( GNUSetup )
elseif ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" )
include ( GNUSetup )
# Remove once clang warnings have been fixed.
if ( NOT APPLE)
include ( GNUSetup )
endif ()
endif ()

###########################################################################
Expand Down
1 change: 0 additions & 1 deletion Code/Mantid/QtPropertyBrowser/src/qtvariantproperty.cpp
Expand Up @@ -192,7 +192,6 @@ static QtProperty *wrappedProperty(QtProperty *property)

class QtVariantPropertyPrivate
{
QtVariantProperty *q_ptr;
public:
QtVariantPropertyPrivate(QtVariantPropertyManager *m) : manager(m) {}

Expand Down

0 comments on commit a3654ae

Please sign in to comment.