THRIFT-955 remove CharLowerBuff function for mingw based Thrift Compiler
=> no lowercase names and directories which was inconsistent for using across different platforms
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1022630 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/compiler/cpp/src/main.cc b/compiler/cpp/src/main.cc
index 56b5c75..fa6d3ae 100644
--- a/compiler/cpp/src/main.cc
+++ b/compiler/cpp/src/main.cc
@@ -189,7 +189,6 @@
if (len == 0 || len > MAX_PATH - 1){
strcpy(resolved_path, path);
} else {
- CharLowerBuff(buf, len);
strcpy(resolved_path, buf);
}