File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ class IntVCM : public IIntegrator {
118118 explicit IntVCM (const VCM ::Options& parameters, const std::shared_ptr<ServiceObserver>& service)
119119 : mParameters(parameters)
120120 , mServiceObserver(service)
121- , mInitialGatherRadius(0 )
122121 , mCBID(0 )
122+ , mInitialGatherRadius(0 )
123123 {
124124 if (mServiceObserver ) {
125125 mCBID = mServiceObserver ->registerBeforeRender ([this ](RenderContext* ctx) {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ typename std::enable_if<std::is_enum<T>::value, std::string>::type
3232_prt_test_string (const T& val)
3333{
3434 std::stringstream stream;
35- stream << static_cast <std::underlying_type<T>::type>(val);
35+ stream << static_cast <typename std::underlying_type<T>::type>(val);
3636 return stream.str ();
3737}
3838
You can’t perform that action at this time.
0 commit comments