Skip to content

Commit

Permalink
xrWeatherEditor: fix invalid boost reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Apr 6, 2016
1 parent 0ef9dd0 commit a08ec76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/editors/xrWeatherEditor/property_holder_include.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define PROPERTY_HOLDER_INCLUDE_HPP_INCLUDED

#pragma unmanaged
#include <boost/noncopyable.hpp>
#include "Common/Noncopyable.hpp"
#include "xrcore/fastdelegate.h"
#include <utility>
#include "include/editor/property_holder.hpp"
Expand All @@ -23,7 +23,8 @@ private ref struct Pair {
};

template <typename T>
class value_holder : private boost::noncopyable {
class value_holder : private Noncopyable
{
public:
inline value_holder (T& value) :
m_value (value)
Expand Down

0 comments on commit a08ec76

Please sign in to comment.