From 698ae40b0dae2136c5660f1d26bd39ccf57bc0c1 Mon Sep 17 00:00:00 2001 From: Daniel Belcher Date: Sun, 21 Apr 2019 21:54:20 -0700 Subject: [PATCH] Update src/CalcViewModel/Common/CopyPasteManager.h Removed an unneeded `inline` Co-Authored-By: Nicholas-Baron <35079404+Nicholas-Baron@users.noreply.github.com> --- src/CalcViewModel/Common/CopyPasteManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CalcViewModel/Common/CopyPasteManager.h b/src/CalcViewModel/Common/CopyPasteManager.h index b00f32ef..2ed5750f 100644 --- a/src/CalcViewModel/Common/CopyPasteManager.h +++ b/src/CalcViewModel/Common/CopyPasteManager.h @@ -27,7 +27,7 @@ namespace CalculatorApp public: static void CopyToClipboard(Platform::String^ stringToCopy); static concurrency::task GetStringToPaste(CalculatorApp::Common::ViewMode mode, CalculatorApp::Common::CategoryGroupType modeType, int programmerNumberBase = -1, int bitLengthType = -1); - inline static bool HasStringToPaste() + static bool HasStringToPaste() { return ClipboardTextFormat() >= 0; }