Commit 44776533 authored by garciay's avatar garciay
Browse files

Remove duplicate types (Int64, UInt64) already declared in LibCommon_Codets.h

Bug fixed when DEBUG_LOG is set
parent c10bbbf9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1839,7 +1839,7 @@ void set_of_AVP_Type::PreDecode(Buffer& buffer) throw (DecodeError)
{
#ifdef DEBUG_LOG
	std::ofstream logfile("C:\\Temp\\LibDiameter.log", ios::app);
	logfile << "set_of_AVP_Type::PreDecode: " << id << std::endl;
	logfile << "set_of_AVP_Type::PreDecode: " << std::endl;
	logfile.close();
#endif
	m_nStartingPosition = buffer.GetPosition();
+0 −5
Original line number Diff line number Diff line
@@ -7,11 +7,6 @@
namespace t3devlib {
namespace gen {

//type integer  UInt8 (0 .. c_uInt8Max) with {variant "unsigned 8 bit"};
//T3DEVLIB_INTEGER_DEFINITION (LibCommon_BasicTypesAndValues, UInt8, Unsigned, 8);
T3DEVLIB_INTEGER_DEFINITION(LibCommon_BasicTypesAndValues, Int64, Signed, 64);
T3DEVLIB_INTEGER_DEFINITION(LibCommon_BasicTypesAndValues, UInt64, Unsigned, 64);

//type UInt32 AVP_Code (1..c_uInt32Max);
T3DEVLIB_INTEGER_DEFINITION(LibDiameter_TypesAndValues, AVP_Code, Unsigned, 32);