Skip to content

Commit

Permalink
fix typo (which turns out builds on gcc)
Browse files Browse the repository at this point in the history
  • Loading branch information
davisking committed Apr 10, 2024
1 parent 73c990d commit 2dbc7b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dlib/image_loader/jpeg_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ namespace dlib

FILE * check_file(const char* filename );
void read_image( FILE *file, const unsigned char* imgbuffer, size_t imgbuffersize );
size_t long height_;
size_t long width_;
size_t long output_components_;
size_t height_;
size_t width_;
size_t output_components_;
std::vector<unsigned char> data;
};

Expand Down

0 comments on commit 2dbc7b9

Please sign in to comment.