From f1ea092d8f9fd8cf8335f6f7d0ad99834c674a72 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 3 Apr 2021 20:36:25 +0200 Subject: [PATCH] Base: Make the "little" test program compilable again --- Base/home/anon/Source/little/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/home/anon/Source/little/main.cpp b/Base/home/anon/Source/little/main.cpp index 55b8bed3c6e..9ee63e2f4ce 100644 --- a/Base/home/anon/Source/little/main.cpp +++ b/Base/home/anon/Source/little/main.cpp @@ -26,7 +26,7 @@ int main(int, char**) Container container; for (int i = 0; i < 3; ++i) { // This is a comment :^) - func(); + MyNamespace::func(); printf("Hello friends!\n"); mkdir("/tmp/xyz", 0755); }