projects
/
platform
/
core
/
api
/
singleo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0781a1a
)
common: use unsigned long type instead of unsigned int
08/317608/1
accepted/tizen_unified_dev
accepted/tizen/unified/20240913.101421
accepted/tizen/unified/dev/20240919.040342
accepted/tizen/unified/x/20240919.040556
author
Inki Dae
<inki.dae@samsung.com>
Thu, 12 Sep 2024 06:58:40 +0000
(15:58 +0900)
committer
Inki Dae
<inki.dae@samsung.com>
Thu, 12 Sep 2024 06:58:40 +0000
(15:58 +0900)
Change-Id: I0853882425d9c1543a22b854b5700603746dcc3d
Signed-off-by: Inki Dae <inki.dae@samsung.com>
common/include/SingleoCommonTypes.h
patch
|
blob
|
history
diff --git
a/common/include/SingleoCommonTypes.h
b/common/include/SingleoCommonTypes.h
index 268b2caad2a978aa6690623f32ce74fe5d31087b..12edcb1bd4b03a01b6fb8066f33c0705286b37ad 100644
(file)
--- a/
common/include/SingleoCommonTypes.h
+++ b/
common/include/SingleoCommonTypes.h
@@
-153,7
+153,7
@@
enum class ResultType { NONE, OBJECT_DETECTION, FACE_DETECTION, FACE_LANDMARK, I
struct BaseResultType {
ResultType _type { ResultType::NONE };
bool _is_empty { true };
- unsigned
int
_frame_number {};
+ unsigned
long
_frame_number {};
BaseResultType(ResultType type) : _type(type)
{}
virtual ~BaseResultType()