Remove two unused argument warnings
(cherry picked from commit dc2c67e25f)
This commit is contained in:
parent
78d5b3f278
commit
f874e81606
2
main.cc
2
main.cc
|
|
@ -700,7 +700,7 @@ static double cycles_diff(struct tms *a, struct tms *b)
|
|||
// Provide dummies
|
||||
struct tms { int x; };
|
||||
inline static void times(struct tms *) { }
|
||||
inline static double cycles_diff(struct tms *a, struct tms *b) { return 0; }
|
||||
inline static double cycles_diff(struct tms *, struct tms *) { return 0; }
|
||||
#endif // ! defined(HAVE_TIMES)
|
||||
|
||||
static void EOC_cleanup(void)
|
||||
|
|
|
|||
Loading…
Reference in New Issue