From e4082a15110edca628ccbe527cecd5087a85f324 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Sun, 27 Aug 2023 20:50:36 +0530 Subject: [PATCH] Fix signatures. --- internal/platform/implementation/linux/platform.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/platform/implementation/linux/platform.cc b/internal/platform/implementation/linux/platform.cc index 8f8c24cc..fb33b1f2 100644 --- a/internal/platform/implementation/linux/platform.cc +++ b/internal/platform/implementation/linux/platform.cc @@ -69,13 +69,13 @@ ImplementationPlatform::GetAppDataPath(const std::string &file_name) { return state / std::filesystem::path(file_name).filename(); } -OSName GetCurrentOS() { return OSName::kWindows; } +OSName ImplementationPlatform::GetCurrentOS() { return OSName::kWindows; } -std::unique_ptr CreateAtomicBoolean(bool initial_value) { +std::unique_ptr ImplementationPlatform::CreateAtomicBoolean(bool initial_value) { return std::make_unique(initial_value); } -std::unique_ptr CreateAtomicUint32(std::uint32_t value) { +std::unique_ptr ImplementationPlatform::CreateAtomicUint32(std::uint32_t value) { return std::make_unique(value); }