Removed USING_NAMESPACE(std). Removed unneeded headers. Added minimum headers. Added "-Wunused-parameter" to warning ignore list due to argc and argv[]
parent
f7600dbbec
commit
bef0e79882
|
|
@ -1,16 +1,13 @@
|
||||||
#include "filters.h"
|
#include "cryptlib.h"
|
||||||
#include "files.h"
|
#include "stdcpp.h"
|
||||||
#include "base64.h"
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "hex.h"
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
USING_NAMESPACE(CryptoPP)
|
USING_NAMESPACE(CryptoPP)
|
||||||
USING_NAMESPACE(std)
|
|
||||||
|
|
||||||
#if GCC_DIAGNOSTIC_AWARE
|
#if GCC_DIAGNOSTIC_AWARE
|
||||||
# pragma GCC diagnostic push
|
# pragma GCC diagnostic push
|
||||||
# pragma GCC diagnostic ignored "-Wunused-variable"
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
||||||
|
# pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern int (*AdhocTest)(int argc, char *argv[]);
|
extern int (*AdhocTest)(int argc, char *argv[]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue