Skip to content

Commit

Permalink
Suppress long type usage
Browse files Browse the repository at this point in the history
  • Loading branch information
metopa committed Mar 18, 2018
1 parent 66bc273 commit 629bbb0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion epi_judge_cpp/closest_int_same_weight.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "test_framework/generic_test.h"

unsigned long ClosestIntSameBitCount(unsigned long x) {
unsigned long long ClosestIntSameBitCount(unsigned long long x) {
// Implement this placeholder.
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion epi_judge_cpp/parity.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "test_framework/generic_test.h"
short Parity(unsigned long x) {
short Parity(unsigned long long x) {
// Implement this placeholder.
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion epi_judge_cpp/primitive_multiply.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "test_framework/generic_test.h"

unsigned long Multiply(unsigned long x, unsigned long y) {
unsigned long long Multiply(unsigned long long x, unsigned long long y) {
// Implement this placeholder.
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion epi_judge_cpp/reverse_bits.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "test_framework/generic_test.h"

unsigned long ReverseBits(unsigned long x) {
unsigned long long ReverseBits(unsigned long long x) {
// Implement this placeholder.
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion epi_judge_cpp/reverse_digits.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "test_framework/generic_test.h"

long Reverse(int x) {
long long Reverse(int x) {
// Implement this placeholder.
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion epi_judge_cpp/swap_bits.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "test_framework/generic_test.h"
long SwapBits(long x, int i, int j) {
long long SwapBits(long long x, int i, int j) {
// Implement this placeholder.
return 0;
}
Expand Down

0 comments on commit 629bbb0

Please sign in to comment.