From ebac89ec6ae0aca646420320c019a0e1cbb79d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 3 Aug 2022 22:04:05 +0200 Subject: Use Pascal case for all functions. --- c/pl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/pl.cpp') diff --git a/c/pl.cpp b/c/pl.cpp index 8b3fcbe..b0e7f8e 100644 --- a/c/pl.cpp +++ b/c/pl.cpp @@ -90,11 +90,11 @@ int Query::NextSolution() } /* Convert Prolog term to wide characters. */ -wchar_ptr PlString(const term_t t, const int flags) +WcharPtr PlString(const term_t t, const int flags) { char* s; if (PL_get_chars(t, &s, flags)) - return {wchar_ptr::from_narrow(s)}; + return {WcharPtr::FromNarrow(s)}; else return {}; } -- cgit v1.2.3