Blackberry buildfix: Include should not occur inside namespace.

This commit is contained in:
Sacha 2013-07-05 14:51:33 +10:00
parent 72eefa450f
commit 4736b26fc3

View File

@ -13,6 +13,8 @@
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
// Higher level wrappers/examples (optional).
#include <stdio.h>
#define JPGE_MAX(a,b) (((a)>(b))?(a):(b))
#define JPGE_MIN(a,b) (((a)<(b))?(a):(b))
@ -895,9 +897,6 @@ bool jpeg_encoder::process_scanline(const void* pScanline)
return m_all_stream_writes_succeeded;
}
// Higher level wrappers/examples (optional).
#include <stdio.h>
class cfile_stream : public output_stream
{
cfile_stream(const cfile_stream &);