Proper constructors are needed.

This commit is contained in:
Bartosz Taudul 2019-02-18 14:56:53 +01:00
parent c9c4d2845a
commit 9040953e13

View File

@ -19,7 +19,13 @@
namespace tracy
{
class GpuCtxScope {};
struct SourceLocationData;
class GpuCtxScope
{
public:
GpuCtxScope( const SourceLocationData* ) {}
GpuCtxScope( const SourceLocationData*, int depth ) {}
};
}
#else