From 0909e6f5083174f7f245dc974b7ce6e881566666 Mon Sep 17 00:00:00 2001 From: Dave Goodwin Date: Sat, 9 Oct 2004 19:41:09 +0000 Subject: [PATCH] *** empty log message *** --- data/inputs/silane.cti | 1 - ext/tpx/Sub.cpp | 1 + ext/tpx/utils.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/inputs/silane.cti b/data/inputs/silane.cti index 5f1af3268..3a8addbe9 100644 --- a/data/inputs/silane.cti +++ b/data/inputs/silane.cti @@ -1,4 +1,3 @@ -convert_ck: debug = 0 # # Generated from file silane.inp # by ck2cti on Mon Sep 20 14:24:48 2004 diff --git a/ext/tpx/Sub.cpp b/ext/tpx/Sub.cpp index 2c3f10422..1fb8ed6c9 100755 --- a/ext/tpx/Sub.cpp +++ b/ext/tpx/Sub.cpp @@ -5,6 +5,7 @@ #include "Sub.h" #include #include +#include namespace tpx { diff --git a/ext/tpx/utils.cpp b/ext/tpx/utils.cpp index 05fddf3ed..369ac1f21 100755 --- a/ext/tpx/utils.cpp +++ b/ext/tpx/utils.cpp @@ -6,7 +6,7 @@ namespace tpx { static string lowercase(string s) { size_t i, n = s.size(); string lc(s); - for (int i = 0; i < n; i++) lc[i] = tolower(s[i]); + for (i = 0; i < n; i++) lc[i] = tolower(s[i]); return lc; }