File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ project(vsg
55 DESCRIPTION "VulkanSceneGraph library"
66 LANGUAGES CXX
77)
8- set (VSG_SOVERSION 16 )
8+ set (VSG_SOVERSION 17 )
99SET (VSG_RELEASE_CANDIDATE 0)
1010set (Vulkan_MIN_VERSION 1.1.70.0)
1111
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ namespace vsg
3737 ScratchMemory (const ScratchMemory&) = delete ;
3838 ScratchMemory& operator =(const ScratchMemory&) = delete ;
3939
40- ~ScratchMemory ()
40+ ~ScratchMemory () override
4141 {
4242 delete[] buffer;
4343 }
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ namespace vsg
9494 CommandBuffers buffers () const ;
9595
9696 protected:
97- ~RecordedCommandBuffers ();
97+ ~RecordedCommandBuffers () override ;
9898 mutable std::mutex _mutex;
9999 std::map<int , ref_ptr<RecordedCommandBuffers>> _orderedCommandBuffers;
100100 CommandBuffers _commandBuffers;
You can’t perform that action at this time.
0 commit comments