summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/plist/plist.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h
index 1413204..7dbc4ae 100644
--- a/include/plist/plist.h
+++ b/include/plist/plist.h
@@ -361,7 +361,8 @@ extern "C"
361 * @param item the new item to insert 361 * @param item the new item to insert
362 * @param key The identifier of the item to insert. 362 * @param key The identifier of the item to insert.
363 */ 363 */
364 PLIST_API void plist_dict_insert_item(plist_t node, const char* key, plist_t item) PLIST_WARN_DEPRECATED("use plist_dict_set_item instead"); 364 PLIST_WARN_DEPRECATED("use plist_dict_set_item instead")
365 PLIST_API void plist_dict_insert_item(plist_t node, const char* key, plist_t item);
365 366
366 /** 367 /**
367 * Remove an existing position in a #PLIST_DICT node. 368 * Remove an existing position in a #PLIST_DICT node.