From 1327c87bf92f1d51286e3172c1047a8a47c5ee3a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 May 2024 19:38:22 +0200 Subject: Revert "Change API around #PLIST_DATA to use uint8_t instead of char arrays" This reverts commit a91f5740d100414a76959714b819422ee5b2d8a8. --- include/plist/Data.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/plist/Data.h') diff --git a/include/plist/Data.h b/include/plist/Data.h index 3f1c329..b566a6c 100644 --- a/include/plist/Data.h +++ b/include/plist/Data.h @@ -35,13 +35,13 @@ public : Data(plist_t node, Node* parent = NULL); Data(const Data& d); Data& operator=(const Data& b); - Data(const std::vector& buff); + Data(const std::vector& buff); virtual ~Data(); Node* Clone() const; - void SetValue(const std::vector& buff); - std::vector GetValue() const; + void SetValue(const std::vector& buff); + std::vector GetValue() const; }; }; -- cgit v1.1-32-gdbae