tags:

views:

78

answers:

1

I am having a service written in C++ and i use VC++ 6.0.

When 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
+5  A: 

Perhaps this explains it?

Try to look for #warning T or #pragma message ("T") inside your code / headers.

adamk
Unfortunately i cant find this anywhere in my entire codebase
ckv
Well, it was a long shot... sorry I couldn't help.
adamk
Sure no problem just was curious to know. This has been something that bugs me everytime a new comer in the team asks what is this?
ckv