Skip to content

Commit

Permalink
outofcore fix C2664 windows compile error line 211
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.pointclouds.org/pcl/trunk@6897 a9d63959-f2ad-4865-b262-bf0e56cfafb6
  • Loading branch information
stevefox committed Aug 22, 2012
1 parent eb6adbc commit 41f9692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outofcore/src/outofcore_node_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ namespace pcl
cJSON* cjson_bb_min = cJSON_CreateDoubleArray (min_array, 3);
cJSON* cjson_bb_max = cJSON_CreateDoubleArray (max_array, 3);

cJSON* cjson_bin_point_filename = cJSON_CreateString (binary_point_filename_.filename ().c_str ());
cJSON* cjson_bin_point_filename = cJSON_CreateString (static_cast<const char*>(binary_point_filename_.filename ().c_str ()));

cJSON_AddItemToObject (idx.get (), "version", cjson_outofcore_version);
cJSON_AddItemToObject (idx.get (), "bb_min", cjson_bb_min);
Expand Down

0 comments on commit 41f9692

Please sign in to comment.