Removed commented code

This commit is contained in:
Albert Vaca 2014-10-10 11:27:01 -07:00
parent ddb9190fbe
commit d31178725b

View file

@ -40,14 +40,6 @@ struct default_arg<int> {
static int get() { return -1; }
};
//Pointer types -> NULL (partial specialization)
//NOTE: Comented because it doesn't makeno sense to send a pointer over the network, but I just left it here for reference --albertvaka
/*template<class T*>
struct default_arg<T*> {
static T* get() { NULL; }
};
*/
//QByteArray-> empty qbytearray
template<>
struct default_arg<QByteArray> {