Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
1cfcb4d8
"examples/vscode:/vscode.git/clone" did not exist on "7ea777e1222686b2e07534526ebd152ff694bbde"
Commit
1cfcb4d8
authored
Oct 28, 2016
by
caseymcc
Committed by
Davis E. King
Oct 28, 2016
Browse files
fix include issue when using libjpeg compiled outside of dlib (#307)
parent
fa8b3767
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
dlib/image_saver/save_jpeg.cpp
dlib/image_saver/save_jpeg.cpp
+4
-3
No files found.
dlib/image_saver/save_jpeg.cpp
View file @
1cfcb4d8
...
@@ -10,14 +10,15 @@
...
@@ -10,14 +10,15 @@
#include "../pixel.h"
#include "../pixel.h"
#include "save_jpeg.h"
#include "save_jpeg.h"
#include <stdio.h>
#include <stdio.h>
#include <sstream>
#include <setjmp.h>
#include "image_saver.h"
#ifdef DLIB_JPEG_STATIC
#ifdef DLIB_JPEG_STATIC
# include "../external/libjpeg/jpeglib.h"
# include "../external/libjpeg/jpeglib.h"
#else
#else
# include <jpeglib.h>
# include <jpeglib.h>
#endif
#endif
#include <sstream>
#include <setjmp.h>
#include "image_saver.h"
namespace
dlib
namespace
dlib
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment