*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-10-09 19:41:09 +00:00
parent 027223c7bb
commit 0909e6f508
3 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,3 @@
convert_ck: debug = 0
#
# Generated from file silane.inp
# by ck2cti on Mon Sep 20 14:24:48 2004

View file

@ -5,6 +5,7 @@
#include "Sub.h"
#include <math.h>
#include <fstream>
#include <stdio.h>
namespace tpx {

View file

@ -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;
}