Skip to content

Commit

Permalink
Fix compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
intorr committed Jan 5, 2018
1 parent 32e600b commit f1379ec
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/editors/xrWeatherEditor/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ using namespace System::Security::Permissions;
[assembly:ComVisible(false)];

[assembly:System::CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
1 change: 1 addition & 0 deletions src/editors/xrWeatherEditor/pch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "Common/Platform.hpp"
#include "Common/Common.hpp"
#include "xrCommon/inlining_macros.h"
#include "xrCore/xrstring.h"
#pragma managed(pop)

#ifdef DEBUG
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ void property_float_enum_value_reference::SetValue(Object ^ object)
inherited::SetValue(safe_cast<ValuePair ^>(m_collection[0])->first);
}

void property_float_enum_value_reference::Increment(float const % increment) {}
void property_float_enum_value_reference::Increment(float value) {}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ref class property_float_enum_value_reference : public property_float_reference
property_float_enum_value_reference(float& value, pair* values, u32 const& value_count);
virtual Object ^ GetValue() override;
virtual void SetValue(Object ^ object) override;
virtual void Increment(float const % increment) override;
virtual void Increment(float value) override;

public:
collection_type ^ m_collection;
Expand Down

0 comments on commit f1379ec

Please sign in to comment.