diff options
Diffstat (limited to 'src/direct_bt/GATTCharacteristic.cpp')
-rw-r--r-- | src/direct_bt/GATTCharacteristic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/direct_bt/GATTCharacteristic.cpp b/src/direct_bt/GATTCharacteristic.cpp index f67a1f1c..4e200204 100644 --- a/src/direct_bt/GATTCharacteristic.cpp +++ b/src/direct_bt/GATTCharacteristic.cpp @@ -90,8 +90,8 @@ std::string GATTCharacteristic::getPropertiesString(const PropertyBitVal propert return out; } -std::vector<std::unique_ptr<std::string>> GATTCharacteristic::getPropertiesStringList(const PropertyBitVal properties) noexcept { - std::vector<std::unique_ptr<std::string>> out; +jau::darray<std::unique_ptr<std::string>> GATTCharacteristic::getPropertiesStringList(const PropertyBitVal properties) noexcept { + jau::darray<std::unique_ptr<std::string>> out; const PropertyBitVal none = static_cast<PropertyBitVal>(0); const uint8_t one = 1; for(int i=0; i<8; i++) { |