Skip to content

Commit

Permalink
Add noexcept to move constructor (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlee671 authored Jan 8, 2025
1 parent 296d6eb commit 82d379d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vswhere.lib/ResourceManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ResourceManager
private:
ResourceManager() {}
ResourceManager(const ResourceManager& obj) {}
ResourceManager(ResourceManager&& obj) {}
ResourceManager(ResourceManager&& obj) noexcept {}

static std::wstring FormatString(_In_ DWORD nID, _In_ va_list args);

Expand Down

0 comments on commit 82d379d

Please sign in to comment.