From a25ac4550b1c855901b5c5210c03f46edc12d8f4 Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Mon, 22 Feb 2016 20:46:58 +0100 Subject: [PATCH] Removed unused overloads --- operators_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/operators_test.cpp b/operators_test.cpp index 5b71f3a..f445945 100644 --- a/operators_test.cpp +++ b/operators_test.cpp @@ -38,11 +38,9 @@ namespace int true_value(int x) { return x; } long true_value(long x) { return x; } signed char true_value(signed char x) { return x; } - short true_value(short x) { return x; } unsigned int true_value(unsigned int x) { return x; } unsigned long true_value(unsigned long x) { return x; } unsigned char true_value(unsigned char x) { return x; } - unsigned short true_value(unsigned short x) { return x; } // verify the minimum requirements for some operators class convertible_to_bool