Make #includes in llcommon header files more complete.
These includes are needed. The current code includes them in .cpp files *before* including these include files, but that is not very clean, and not useful. Actually including what a header file needs makes it more clear what it drags in, it doesn't drag in more then before. It also allows to include these headers without having to includes needed for the included header file in a specific order, in every .cpp file.
This commit is contained in:
@@ -32,6 +32,10 @@
|
||||
#ifndef LL_LLMD5_H
|
||||
#define LL_LLMD5_H
|
||||
|
||||
#include "llpreprocessor.h"
|
||||
#include <iosfwd>
|
||||
#include <cstring> // memcmp
|
||||
|
||||
// LLMD5.CC - source code for the C++/object oriented translation and
|
||||
// modification of MD5.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user