Cleared "unused variable" warning under GCC 5.1 with -Wall
parent
504ba0ea87
commit
5bb0e6fd38
|
|
@ -1,12 +1,18 @@
|
||||||
#include "filters.h"
|
#include "filters.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "base64.h"
|
#include "base64.h"
|
||||||
|
#include "misc.h"
|
||||||
#include "hex.h"
|
#include "hex.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
USING_NAMESPACE(CryptoPP)
|
USING_NAMESPACE(CryptoPP)
|
||||||
USING_NAMESPACE(std)
|
USING_NAMESPACE(std)
|
||||||
|
|
||||||
|
#if GCC_DIAGNOSTIC_AWARE
|
||||||
|
# pragma GCC diagnostic push
|
||||||
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
||||||
|
#endif
|
||||||
|
|
||||||
extern int (*AdhocTest)(int argc, char *argv[]);
|
extern int (*AdhocTest)(int argc, char *argv[]);
|
||||||
|
|
||||||
int MyAdhocTest(int argc, char *argv[])
|
int MyAdhocTest(int argc, char *argv[])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue