We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3db8fde + 5848c40 commit bd11787Copy full SHA for bd11787
include/fakeit/Quantifier.hpp
@@ -65,16 +65,12 @@ namespace fakeit {
65
#if defined (__GNUG__) || (_MSC_VER >= 1900)
66
67
inline QuantifierFunctor operator
68
- ""
69
-
70
- _Times(unsigned long long n) {
+ ""_Times(unsigned long long n) {
71
return QuantifierFunctor((int) n);
72
}
73
74
75
76
77
- _Time(unsigned long long n) {
+ ""_Time(unsigned long long n) {
78
if (n != 1)
79
throw std::invalid_argument("Only 1_Time is supported. Use X_Times (with s) if X is bigger than 1");
80
0 commit comments