Using explicity bit-length for longs to prevent overflow

This commit is contained in:
Matt Hill
2015-03-17 00:22:02 -04:00
parent 8aded3b750
commit f98a501c02
4 changed files with 10 additions and 9 deletions

View File

@@ -23,6 +23,7 @@
#include <iostream>
#include <vector>
#include <fstream>
#include <inttypes.h>
namespace alpr
{
@@ -94,7 +95,7 @@ namespace alpr
AlprResults() {};
virtual ~AlprResults() {};
long epoch_time;
int64_t epoch_time;
int img_width;
int img_height;
float total_processing_time_ms;