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.pld@gmail.com>2019-06-22 15:05:18 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-06-22 15:05:18 +0300
commit6a82f666a7e46ac4ba23437290176fc5cdd18516 (patch)
treeabadc86efcd96fd413ee0169791b70cb64743648 /server/TracyWorker.cpp
parent54ae4c84ba5c417bfebad0523eaebc7767702a7c (diff)
Cosmetics.
Diffstat (limited to 'server/TracyWorker.cpp')
-rw-r--r--server/TracyWorker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracyWorker.cpp b/server/TracyWorker.cpp
index 13ee59d4..46a70892 100644
--- a/server/TracyWorker.cpp
+++ b/server/TracyWorker.cpp
@@ -1498,7 +1498,7 @@ const FrameImage* Worker::GetFrameImage( const FrameData& fd, size_t idx ) const
return m_data.frameImage[v];
}
-std::pair <int, int> Worker::GetFrameRange( const FrameData& fd, int64_t from, int64_t to )
+std::pair<int, int> Worker::GetFrameRange( const FrameData& fd, int64_t from, int64_t to )
{
auto zitbegin = std::lower_bound( fd.frames.begin(), fd.frames.end(), from, [] ( const auto& lhs, const auto& rhs ) { return lhs.start < rhs; } );
if( zitbegin == fd.frames.end() ) zitbegin--;