Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-11-08 16:57:42 +0300
committerbubnikv <bubnikv@gmail.com>2018-11-08 16:57:42 +0300
commit34e525766bc24e4aac9e78f4b5e15cee3c8d4c2e (patch)
treeb5e95311e7fa07090e9444c0999d040aff339442 /src/libslic3r/PrintBase.hpp
parent71c2d343082eef881d599fcceccde7e4a72f6c4f (diff)
Fix of friend declaration on a template parameter, according to C++11
Diffstat (limited to 'src/libslic3r/PrintBase.hpp')
-rw-r--r--src/libslic3r/PrintBase.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/PrintBase.hpp b/src/libslic3r/PrintBase.hpp
index 47a849e84..52e5c8989 100644
--- a/src/libslic3r/PrintBase.hpp
+++ b/src/libslic3r/PrintBase.hpp
@@ -285,7 +285,7 @@ protected:
bool invalidate_all_steps() { return m_state.invalidate_all(PrintObjectBase::cancel_mutex(m_print), PrintObjectBase::cancel_callback(m_print)); }
protected:
- friend typename PrintType;
+ friend PrintType;
PrintType *m_print;
private: