Skip to content

Commit a08ec76

Browse files
author
nitrocaster
committed
xrWeatherEditor: fix invalid boost reference.
1 parent 0ef9dd0 commit a08ec76

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/editors/xrWeatherEditor/property_holder_include.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define PROPERTY_HOLDER_INCLUDE_HPP_INCLUDED
1111

1212
#pragma unmanaged
13-
#include <boost/noncopyable.hpp>
13+
#include "Common/Noncopyable.hpp"
1414
#include "xrcore/fastdelegate.h"
1515
#include <utility>
1616
#include "include/editor/property_holder.hpp"
@@ -23,7 +23,8 @@ private ref struct Pair {
2323
};
2424

2525
template <typename T>
26-
class value_holder : private boost::noncopyable {
26+
class value_holder : private Noncopyable
27+
{
2728
public:
2829
inline value_holder (T& value) :
2930
m_value (value)

0 commit comments

Comments
 (0)