Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
None
-
ubuntu 14.04 TLS
Description
The driver compile well but when it is used in other application and compiled an error is found on bsonobjbuilder.h
for fix i need to insert in the same file the method :
BSONObjBuilder& append(const StringData& fieldName, long int longNum) { |
_b.appendNum((char) NumberLong); |
_b.appendStr(fieldName);
|
_b.appendNum((long long int)longNum); |
return *this; |
}
|