Skip to content

Commit bd11787

Browse files
authored
Merge pull request #355 from denravonska/fix/cpp23-warnings
Remove stray spaces and newlines.
2 parents 3db8fde + 5848c40 commit bd11787

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

include/fakeit/Quantifier.hpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,12 @@ namespace fakeit {
6565
#if defined (__GNUG__) || (_MSC_VER >= 1900)
6666

6767
inline QuantifierFunctor operator
68-
""
69-
70-
_Times(unsigned long long n) {
68+
""_Times(unsigned long long n) {
7169
return QuantifierFunctor((int) n);
7270
}
7371

7472
inline QuantifierFunctor operator
75-
""
76-
77-
_Time(unsigned long long n) {
73+
""_Time(unsigned long long n) {
7874
if (n != 1)
7975
throw std::invalid_argument("Only 1_Time is supported. Use X_Times (with s) if X is bigger than 1");
8076
return QuantifierFunctor((int) n);

0 commit comments

Comments
 (0)