From 87f97c98ec453cca3121a626b02ff8fca82ebc55 Mon Sep 17 00:00:00 2001 From: mitchell Date: Sat, 9 Mar 2019 16:12:45 -0500 Subject: Backport: Use noexcept and constexpr where possible and reasonable. Backport of changeset 7280:9cf6a15d6c85, but removed constexpr since it is not supported in C++11. --- win32/PlatWin.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'win32/PlatWin.h') diff --git a/win32/PlatWin.h b/win32/PlatWin.h index cf357f72d..2a1bcb649 100644 --- a/win32/PlatWin.h +++ b/win32/PlatWin.h @@ -13,7 +13,11 @@ namespace Scintilla { extern void Platform_Initialise(void *hInstance); extern void Platform_Finalise(bool fromDllMain); -RECT RectFromPRectangle(PRectangle prc) noexcept; +RECT RectFromPRectangle(PRectangle prc) noexcept { + RECT rc = { static_cast(prc.left), static_cast(prc.top), + static_cast(prc.right), static_cast(prc.bottom) }; + return rc; +} #if defined(USE_D2D) extern bool LoadD2D(); -- cgit v1.2.3