I am having a service written in C++ and i use VC++ 6.0.
开发者_如何学JAVAWhen i build this service i get a strange message as shown (The letter 'T'coming during compilation). Though it does not cause any problem, i would like to know why this message occurs.
Compiling...
SerString.cpp
SerSwitcher.cpp
Smtp.cpp
SysConfigBlob.cpp
T
T
TransLateReportNames.cpp
Perhaps this explains it?
Try to look for #warning T
or #pragma message ("T")
inside your code / headers.
精彩评论