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 "files.h"
|
||||
#include "base64.h"
|
||||
#include "cryptlib.h"
|
||||
#include "stdcpp.h"
|
||||
#include "misc.h"
|
||||
#include "hex.h"
|
||||
#include <iostream>
|
||||
|
||||
USING_NAMESPACE(CryptoPP)
|
||||
USING_NAMESPACE(std)
|
||||
|
||||
#if GCC_DIAGNOSTIC_AWARE
|
||||
# pragma GCC diagnostic push
|
||||
# pragma GCC diagnostic ignored "-Wunused-variable"
|
||||
# pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
#endif
|
||||
|
||||
extern int (*AdhocTest)(int argc, char *argv[]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue