From f5a717a5fa81c71a65b1b725e8b774a8e8e9bb43 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 1 Mar 2014 21:38:47 -0500 Subject: [PATCH] Fixed warning on visual studio. --- examples/learning_to_track_ex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/learning_to_track_ex.cpp b/examples/learning_to_track_ex.cpp index 2d707fedf..c8992c84b 100644 --- a/examples/learning_to_track_ex.cpp +++ b/examples/learning_to_track_ex.cpp @@ -36,7 +36,7 @@ struct detection copyable and contain a public typedef named track_type that tells us the track type meant for use with this detection object. */ - typedef class track track_type; + typedef struct track track_type;