fix misleading indentation in miniz, missing header, and missing forward declarations

This commit is contained in:
Thomas Fussell 2017-04-11 18:04:05 -04:00
parent 05fb40438c
commit 4b174ab268
3 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,7 @@
// @author: see AUTHORS file
#include <array>
#include <cstring>
#include <iomanip>
#include <string>
#include <sstream>

View File

@ -3851,7 +3851,7 @@ mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename,
if ((!pZip) || (!pFilename) || ((archive_size) && (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE)))
return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);
pFile = MZ_FOPEN(pFilename, "rb");
pFile = MZ_FOPEN(pFilename, "rb");
if (!pFile)
return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED);

View File

@ -35,8 +35,11 @@ class serializer;
namespace xlnt {
class border;
class cell_reference;
class color;
class fill;
class font;
class path;
class relationship;
class workbook;