Yeah Jonas and that's why i said that i forgot about the generated
file.

Btw Scott in case you have started you should check this out too
(config.h inside the ms project folder):
http://protobuf.googlecode.com/svn/trunk/vsprojects/config.h

I am sure that bcb 2007 and later have hash_map.h and hash_set.h in
their libs so the lines beyond have to be changed:
#if _MSC_VER < 1310 || _MSC_VER >= 1600
#define HASH_NAMESPACE std
#else
#define HASH_NAMESPACE stdext
#endif

into something like this:
#if _MSC_VER < 1310 || _MSC_VER >= 1600 || defined(__BORLANDC__) //I
am not aware of the versioning numbers so i am checking only if it is
defined.
#define HASH_NAMESPACE std
#else
#define HASH_NAMESPACE stdext
#endif

I am not sure if this file needs further modifications but this would
suffice.
Note that on my 2nd post i said __BUILDERC__ but there correct one was
__BORLANDC__

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en.

Reply via email to