From aad52866474baa5740da75d6c6e7520cf1e082af Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 27 Mar 2010 21:45:41 -0400 Subject: [PATCH] renaming file to use .cpp extension --- Makefile | 4 ++-- src/{hello_world.cc => hello_world.cpp} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{hello_world.cc => hello_world.cpp} (100%) diff --git a/Makefile b/Makefile index d472e52..db46cbe 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -bin/hello-world: src/hello_world.cc - g++ src/hello_world.cc -o bin/hello-world +bin/hello-world: src/hello_world.cpp + g++ src/hello_world.cpp -o bin/hello-world diff --git a/src/hello_world.cc b/src/hello_world.cpp similarity index 100% rename from src/hello_world.cc rename to src/hello_world.cpp