From bd255e25e7f28884842498e93b3166e858004d1e Mon Sep 17 00:00:00 2001 From: Erwin Waterlander Date: Fri, 10 Mar 2023 12:59:24 +0000 Subject: [PATCH] Changed the template application to Hello World. This provides a more useful template when making a simple Makefile project. Pulled out of #314 --- build/org.eclipse.cdt.make.core/templates/simple/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/org.eclipse.cdt.make.core/templates/simple/main.cpp b/build/org.eclipse.cdt.make.core/templates/simple/main.cpp index c493b4a5566..aeffd4b6249 100644 --- a/build/org.eclipse.cdt.make.core/templates/simple/main.cpp +++ b/build/org.eclipse.cdt.make.core/templates/simple/main.cpp @@ -1,4 +1,6 @@ +#include int main(int argc, char **argv) { + std::cout << "Hello World" << std::endl; return 0; }