removed extra namespace from simple functions
Gitea Actions For Fabelous-Math / Explore-Gitea-Actions (push) Successful in 18s
Details
Gitea Actions For Fabelous-Math / Explore-Gitea-Actions (push) Successful in 18s
Details
This commit is contained in:
parent
7345d29515
commit
8e6f8dd178
|
@ -1,11 +1,9 @@
|
|||
#include "simple_functions.hpp"
|
||||
|
||||
namespace simple_functions {
|
||||
bool is_even(long long number) {
|
||||
return (number & 1) == 0;
|
||||
}
|
||||
bool simple_functions::is_even(long long number) {
|
||||
return (number & 1) == 0;
|
||||
}
|
||||
|
||||
bool is_odd(long long number) {
|
||||
return (number & 1);
|
||||
}
|
||||
}
|
||||
bool simple_functions::is_odd(long long number) {
|
||||
return (number & 1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue