From afd6009fdad2bae1170cb2cc24baadc41a32636a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 22 Aug 2014 00:00:31 -0700 Subject: [PATCH] Port scexpand and sci18n to C++. --- sourcepawn/compiler/AMBuilder | 4 ++-- sourcepawn/compiler/{scexpand.c => scexpand.cpp} | 0 sourcepawn/compiler/{sci18n.c => sci18n.cpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename sourcepawn/compiler/{scexpand.c => scexpand.cpp} (100%) rename sourcepawn/compiler/{sci18n.c => sci18n.cpp} (100%) diff --git a/sourcepawn/compiler/AMBuilder b/sourcepawn/compiler/AMBuilder index 9ec19520a..0b3d23e0e 100644 --- a/sourcepawn/compiler/AMBuilder +++ b/sourcepawn/compiler/AMBuilder @@ -89,8 +89,8 @@ binary.sources += [ 'sc5.c', 'sc6.c', 'sc7.c', - 'scexpand.c', - 'sci18n.c', + 'scexpand.cpp', + 'sci18n.cpp', 'sclist.cpp', 'scmemfil.cpp', 'scstate.cpp', diff --git a/sourcepawn/compiler/scexpand.c b/sourcepawn/compiler/scexpand.cpp similarity index 100% rename from sourcepawn/compiler/scexpand.c rename to sourcepawn/compiler/scexpand.cpp diff --git a/sourcepawn/compiler/sci18n.c b/sourcepawn/compiler/sci18n.cpp similarity index 100% rename from sourcepawn/compiler/sci18n.c rename to sourcepawn/compiler/sci18n.cpp