diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-19 19:54:46 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-19 19:54:46 +0200 |
commit | 7691269b7b9ddf6fbed53048b9a5ae85d58fd4be (patch) | |
tree | fa9f1bc9239e87c41a01e4075051632500062bab | |
parent | ff53b8efce55f5668af61f13b656fdb54dee7755 (diff) | |
download | EpisodeBrowser-7691269b7b9ddf6fbed53048b9a5ae85d58fd4be.tar.gz |
Formatting.
-rw-r--r-- | c/common.h | 20 | ||||
-rw-r--r-- | c/pl.h | 16 |
2 files changed, 18 insertions, 18 deletions
@@ -29,12 +29,12 @@ struct Library { Library(const TCHAR* tszLibrary); ~Library(); - template <typename T> T* GetProcAddress(const char* szProc); + template <class T> T* GetProcAddress(const char* szProc); private: HMODULE m_hModule; }; -template <typename T> +template <class T> T* Library::GetProcAddress(const char* const szProc) { return (T*)(void*)::GetProcAddress(m_hModule, szProc); @@ -43,8 +43,8 @@ T* Library::GetProcAddress(const char* const szProc) /* Create and return an object of type C. If construction fails, * return nothing. The returned value must be checked before being * used, as dereferencing is undefined if the value is empty. */ -template <class C, typename ...T> -std::optional<C> maybe_make(T ...args) +template <class C, class... T> +std::optional<C> maybe_make(T... args) { try { return C(args...); @@ -53,18 +53,18 @@ std::optional<C> maybe_make(T ...args) } } -/* Call Windows API function and throw error if NULL is returned. */ -template <auto f, typename ...T> -inline auto throw_nil(T ...args) +/* Call Windows API function, throwing error on NULL. */ +template <auto f, class... T> +inline auto throw_nil(T... args) { auto r = f(args...); if (!r) throw Win32Error(GetLastError()); return r; } -/* Call Windows API function and show a warning if NULL is returned. */ -template <auto f, typename ...T> -inline auto warn_nil(T ...args) +/* Call Windows API function, showing a warning on NULL. */ +template <auto f, class... T> +inline auto warn_nil(T... args) { decltype(f(args...)) r; try { @@ -67,21 +67,21 @@ inline int PlGet(const term_t t, char** const x) { return PL_get_atom_chars(t, x inline int PlGet(const term_t t, wchar_t** const x) { size_t len; return PL_get_wchars(t, &len, x, CVT_ATOM); } /* Helper templates for Plx, Pl. */ -template <typename T> +template <class T> int PlPutv(const term_t t, T arg) { return PlPut(t, arg); } -template <typename T, typename ...R> +template <class T, class... R> int PlPutv(const term_t t, T arg, R... rest) { return PlPut(t, arg)? PlPutv(t+1, rest...): 0; } -template <typename T> +template <class T> int PlGetv(const term_t t, T arg) { return PlGet(t, arg); } -template <typename T, typename ...R> +template <class T, class... R> int PlGetv(const term_t t, T arg, R... rest) { return PlGet(t, arg)? PlGetv(t+1, rest...): 0; } -template <typename T> +template <class T> int Countv(const int i, T) { return i+1; } -template <typename T, typename ...R> +template <class T, class... R> int Countv(const int i, T, R... rest) { return Countv(i+1, rest...); } /* Call Prolog predicate, propagating Prolog exceptions. */ -template <typename ...T> +template <class... T> int Plx(const char* const szMod, const char* const szPred, T... args) { Frame f; @@ -95,7 +95,7 @@ int Plx(const char* const szMod, const char* const szPred, T... args) } /* Call Prolog predicate, ignoring Prolog exceptions. */ -template <typename ...T> +template <class... T> int Pl(const char* const szMod, const char* const szPred, T... args) { try { |