I have a rather large and complex set of programs to port from VC8 to VC9. One of the modules has a number of layered typedefs, which cause the compiler to generate a C4503 warning (decorated name truncated). The generated LIB file will not properly link to other modules in the project. VC8 had no trouble with this, leading me to conclude that either the decoration process has changed to generate even longer names, or the internal limit for the length of a decorated name has decreased. What's the best way to get over this?

For legacy code reasons, the MSDN suggestion of replacing typedefs with structs is not practical.

The typedefs in question are (sanitized code):

enum Type{
    TYPE_COUNT,
    TYPE_VALUE
};

typedef MyVector< Container*, CriticalSectionLock > Containers;
typedef MyVector< MyClassType*, CriticalSectionLock >::const_iterator const_iterator_type;
typedef MyVector< stl::pair< string, Type > >::const_iterator const_iterator_def;
typedef MyVector< Container** >::const_iterator const_iterator_container;
typedef MyVector< stl::pair < MyBase*, MyVector< stl::pair< Container**, Containers* > > > >::const_iterator const_iterator;
link|improve this question
Just glad I'm not working on that code. – Kibbee Nov 2 '08 at 1:11
If the truncated decorated name is truncated the same when building the library as when building the module that links to the library, wouldn't it continue to link fine even in the face of this warning? Or do you have multiple symbols that only differ after the point of truncation? – GBegen Feb 4 '09 at 18:37
feedback

3 Answers

Since there does not appear to be a way to increase the compiler's internal limitation on the decorated name length, I bit the bullet and made the change suggested in the MSDN. see: http://msdn.microsoft.com/en-us/library/074af4b6.aspx

I only had to change the first typedef to a struct. This required about 200 other changes in legacy code, which was tedious, but otherwise not difficult. However, I will be spending the next week or so in regression testing to make sure this did not screw something up.

Here is the basic change: (note that I was forced to add some ctors to the struct)

enum Type{
    TYPE_COUNT,
    TYPE_VALUE
 };

 struct Containers 
 {
    MyVector<Container*, CriticalSectionLock > Element;
    Containers(int num, Container* elem):Element(num, elem){}
    Containers(){}
 };
 typedef MyVector< MyClassType*, CriticalSectionLock >::const_iterator  const_iterator_type;
 typedef MyVector< stl::pair< string, Type > >::const_iterator const_iterator_def;
 typedef MyVector< Container** >::const_iterator const_iterator_container;
 typedef MyVector< stl::pair < MyBase*, MyVector< stl::pair< Container**, Containers* > > > >::const_iterator const_iterator;
link|improve this answer
If you put an operator() or something on your struct, would it have worked more as-is with less code changes? – John Nov 11 '11 at 21:16
feedback
#pragma warning(disable:xxx).

Life's too short man.

link|improve this answer
Unfortunately it also failed to link due to this warning. Other than that: agreed. – Joachim Sauer Dec 19 '08 at 15:11
feedback

@Roel: As I mentioned in the original posting: "The generated LIB file will not properly link to other modules in the project."

IOW, this is more than just a 'warning'. It causes the project NOT TO WORK.

My posted fix is somewhat difficult and tedious to completely implement, but it does work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.