Merge pull request #277 from patrickjwhite/unused-vars

Prevent warnings by removing parameters from methods that don't use them...
This commit is contained in:
Günter Obiltschnig
2013-09-13 07:44:58 -07:00
3 changed files with 26 additions and 25 deletions

View File

@@ -94,7 +94,7 @@ public:
{ {
} }
AbstractDelegate(const AbstractDelegate& del) AbstractDelegate(const AbstractDelegate&)
{ {
} }

View File

@@ -236,62 +236,62 @@ public:
return typeid(Struct<std::string>); return typeid(Struct<std::string>);
} }
void convert(Int8& val) const void convert(Int8&) const
{ {
throw BadCastException("Cannot cast Struct type to Int8"); throw BadCastException("Cannot cast Struct type to Int8");
} }
void convert(Int16& val) const void convert(Int16&) const
{ {
throw BadCastException("Cannot cast Struct type to Int16"); throw BadCastException("Cannot cast Struct type to Int16");
} }
void convert(Int32& val) const void convert(Int32&) const
{ {
throw BadCastException("Cannot cast Struct type to Int32"); throw BadCastException("Cannot cast Struct type to Int32");
} }
void convert(Int64& val) const void convert(Int64&) const
{ {
throw BadCastException("Cannot cast Struct type to Int64"); throw BadCastException("Cannot cast Struct type to Int64");
} }
void convert(UInt8& val) const void convert(UInt8&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt8"); throw BadCastException("Cannot cast Struct type to UInt8");
} }
void convert(UInt16& val) const void convert(UInt16&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt16"); throw BadCastException("Cannot cast Struct type to UInt16");
} }
void convert(UInt32& val) const void convert(UInt32&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt32"); throw BadCastException("Cannot cast Struct type to UInt32");
} }
void convert(UInt64& val) const void convert(UInt64&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt64"); throw BadCastException("Cannot cast Struct type to UInt64");
} }
void convert(bool& val) const void convert(bool&) const
{ {
throw BadCastException("Cannot cast Struct type to bool"); throw BadCastException("Cannot cast Struct type to bool");
} }
void convert(float& val) const void convert(float&) const
{ {
throw BadCastException("Cannot cast Struct type to float"); throw BadCastException("Cannot cast Struct type to float");
} }
void convert(double& val) const void convert(double&) const
{ {
throw BadCastException("Cannot cast Struct type to double"); throw BadCastException("Cannot cast Struct type to double");
} }
void convert(char& val) const void convert(char&) const
{ {
throw BadCastException("Cannot cast Struct type to char"); throw BadCastException("Cannot cast Struct type to char");
} }
@@ -412,62 +412,62 @@ public:
return typeid(Struct<int>); return typeid(Struct<int>);
} }
void convert(Int8& val) const void convert(Int8&) const
{ {
throw BadCastException("Cannot cast Struct type to Int8"); throw BadCastException("Cannot cast Struct type to Int8");
} }
void convert(Int16& val) const void convert(Int16&) const
{ {
throw BadCastException("Cannot cast Struct type to Int16"); throw BadCastException("Cannot cast Struct type to Int16");
} }
void convert(Int32& val) const void convert(Int32&) const
{ {
throw BadCastException("Cannot cast Struct type to Int32"); throw BadCastException("Cannot cast Struct type to Int32");
} }
void convert(Int64& val) const void convert(Int64&) const
{ {
throw BadCastException("Cannot cast Struct type to Int64"); throw BadCastException("Cannot cast Struct type to Int64");
} }
void convert(UInt8& val) const void convert(UInt8&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt8"); throw BadCastException("Cannot cast Struct type to UInt8");
} }
void convert(UInt16& val) const void convert(UInt16&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt16"); throw BadCastException("Cannot cast Struct type to UInt16");
} }
void convert(UInt32& val) const void convert(UInt32&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt32"); throw BadCastException("Cannot cast Struct type to UInt32");
} }
void convert(UInt64& val) const void convert(UInt64&) const
{ {
throw BadCastException("Cannot cast Struct type to UInt64"); throw BadCastException("Cannot cast Struct type to UInt64");
} }
void convert(bool& val) const void convert(bool&) const
{ {
throw BadCastException("Cannot cast Struct type to bool"); throw BadCastException("Cannot cast Struct type to bool");
} }
void convert(float& val) const void convert(float&) const
{ {
throw BadCastException("Cannot cast Struct type to float"); throw BadCastException("Cannot cast Struct type to float");
} }
void convert(double& val) const void convert(double&) const
{ {
throw BadCastException("Cannot cast Struct type to double"); throw BadCastException("Cannot cast Struct type to double");
} }
void convert(char& val) const void convert(char&) const
{ {
throw BadCastException("Cannot cast Struct type to char"); throw BadCastException("Cannot cast Struct type to char");
} }

View File

@@ -281,6 +281,7 @@ protected:
/// smal object optimization is enabled. /// smal object optimization is enabled.
{ {
#ifdef POCO_NO_SOO #ifdef POCO_NO_SOO
(void)pVarHolder;
return new VarHolderImpl<T>(val); return new VarHolderImpl<T>(val);
#else #else
poco_check_ptr (pVarHolder); poco_check_ptr (pVarHolder);