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
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-13 20:25:36 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-13 20:25:36 +0300
commitc0c3b589558df9158084acb7be0183354addea23 (patch)
tree5f783dd1343a2fdfd589937f20aedddf1743aa7c
parent4a1e93841d184d37a6a35ecafd28cf743616ed08 (diff)
Remove dead code.
-rw-r--r--server/TracyView.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/TracyView.hpp b/server/TracyView.hpp
index 85285cee..ca5856a6 100644
--- a/server/TracyView.hpp
+++ b/server/TracyView.hpp
@@ -90,7 +90,6 @@ public:
using SetTitleCallback = void(*)( const char* );
using SetScaleCallback = void(*)( float, ImFont*&, ImFont*&, ImFont*& );
- View( void(*cbMainThread)(std::function<void()>, bool), ImFont* fixedWidth = nullptr, ImFont* smallFont = nullptr, ImFont* bigFont = nullptr, SetTitleCallback stcb = nullptr, SetScaleCallback sscb = nullptr ) : View( cbMainThread, "127.0.0.1", 8086, fixedWidth, smallFont, bigFont, stcb, sscb ) {}
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();