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

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-13 20:30:15 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-13 20:30:15 +0300
commit575f627136631804475dd9bcd00b225fd1c67053 (patch)
tree572ab002c416ed63137bd55c08f20f089bd2807a /server
parentc0c3b589558df9158084acb7be0183354addea23 (diff)
All View ctor parameters need to be explicitly stated.
Diffstat (limited to 'server')
-rw-r--r--server/TracyView.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/TracyView.hpp b/server/TracyView.hpp
index ca5856a6..8036c2da 100644
--- a/server/TracyView.hpp
+++ b/server/TracyView.hpp
@@ -90,8 +90,8 @@ public:
using SetTitleCallback = void(*)( const char* );
using SetScaleCallback = void(*)( float, ImFont*&, ImFont*&, ImFont*& );
- View( void(*cbMainThread)(std::function<void()>, bool), const char* addr, uint16_t port, ImFont* fixedWidth = nullptr, ImFont* smallFont = nullptr, ImFont* bigFont = nullptr, SetTitleCallback stcb = nullptr, SetScaleCallback sscb = nullptr );
- View( void(*cbMainThread)(std::function<void()>, bool), FileRead& f, ImFont* fixedWidth = nullptr, ImFont* smallFont = nullptr, ImFont* bigFont = nullptr, SetTitleCallback stcb = nullptr, SetScaleCallback sscb = nullptr );
+ View( void(*cbMainThread)(std::function<void()>, bool), const char* addr, uint16_t port, ImFont* fixedWidth, ImFont* smallFont, ImFont* bigFont, SetTitleCallback stcb, SetScaleCallback sscb );
+ View( void(*cbMainThread)(std::function<void()>, bool), FileRead& f, ImFont* fixedWidth, ImFont* smallFont, ImFont* bigFont, SetTitleCallback stcb, SetScaleCallback sscb );
~View();
static bool Draw();