From 9ae4da3b386b9427c52855a722ceaaf934419431 Mon Sep 17 00:00:00 2001 From: Sergey Markelov Date: Mon, 6 Mar 2023 16:48:36 +0000 Subject: [PATCH] Fix compile error: this function declaration is not a prototype `cef_basetime_now()` failed to compile if `-Wstrict-prototypes` is set in clang or gcc. --- include/internal/cef_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/cef_time.h b/include/internal/cef_time.h index b1e683a6b..7d0b4cc73 100644 --- a/include/internal/cef_time.h +++ b/include/internal/cef_time.h @@ -122,7 +122,7 @@ CEF_EXPORT int cef_time_now(cef_time_t* cef_time); /// /// Retrieve the current system time. /// -CEF_EXPORT cef_basetime_t cef_basetime_now(); +CEF_EXPORT cef_basetime_t cef_basetime_now(void); /// /// Retrieve the delta in milliseconds between two time values. Returns true (1)