From 7d00e10378ce4d9e04a4882460840b1f93e63eb1 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 10 Aug 2004 01:12:15 +0000 Subject: [PATCH] MSVC warning message --- tools/src/cti2ctml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/cti2ctml.cpp b/tools/src/cti2ctml.cpp index 7392d66c1..8b53015d9 100644 --- a/tools/src/cti2ctml.cpp +++ b/tools/src/cti2ctml.cpp @@ -48,7 +48,7 @@ int main(int argc, char** argv) { for (int j = 1; j < argc; j++) { tok = string(argv[j]); if (tok[0] == '-') { - int nopt = tok.size(); + int nopt = static_cast(tok.size()); for (int n = 1; n < nopt; n++) { if (tok[n] == 'h') { printUsage();