From 9ba18d678f710339df04fa7db5cae4e61850cf19 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Mon, 5 Aug 2019 02:54:59 -0400 Subject: [PATCH] std:: prefixing for Example.cpp --- src/examples/Example.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/Example.cpp b/src/examples/Example.cpp index eec8d00e..ebda6b3f 100644 --- a/src/examples/Example.cpp +++ b/src/examples/Example.cpp @@ -80,7 +80,7 @@ int main(int argc, char* argv[]) { // Close timeline r9.Close(); - cout << "Completed successfully!" << endl; + std::cout << "Completed successfully!" << std::endl; return 0; -} \ No newline at end of file +}