std :: unique_ptr с лямбда-нестандартным удалителем не компилируется

Не могу найти в чем проблема в следующем коде

std::unique_ptr<CFStringRef, std::function<void(CFStringRef)>>
cfstr(CFStringCreateWithCString(NULL, str, kCFStringEncodingUTF8),
[](CFStringRef obj){
CFRelease(obj);
});

CFStringCreateWithCString должен возвращать правильный тип согласно Документация CFStringCreateWithCString

Ошибка:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wno-unused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.7 -g -fvisibility-inlines-hidden -Wno-sign-conversion -D_DEBUG -DDEBUG -MMD -MT dependencies -MF -c DynamicStore.cpp -o DynamicStore.o

DynamicStore.cpp:29:5: error: no matching constructor for initialization of 'std::unique_ptr<CFStringRef, std::function<void (CFStringRef)> >'
cfstr((CFStringRef)CFStringCreateWithCString(NULL, str, kCFStringEncodingUTF8),

main.cpp:73:14: note: in instantiation of function template specialization 'std::__1::for_each<std::__1::__wrap_iter<const std::__1::sub_match<const char *> *>, (lambda at main.cpp:73:45)>' requested here
std::for_each(cm.begin(), cm.end(), [](const std::cmatch &s){
^
main.cpp:73:45: note: candidate function not viable: no known conversion from 'const std::__1::sub_match<const char *>' to 'const std::cmatch' (aka 'const match_results<const char *>') for 1st argument
std::for_each(cm.begin(), cm.end(), [](const std::cmatch &s){
^
main.cpp:73:45: note: conversion candidate of type 'void (*)(const std::cmatch &)'

2

Решение

Создание на основе цитаты @NulledPointer:

struct CFStringRefDeleter {
using pointer = CFStringRef;
void operator()(CFStringRef ref) {
CFRelease(ref);
}
};
using CFStr_t = std::unique_ptr<CFStringRef, CFStringRefDeleter>;
CFStr_t cfstr(CFStringCreateWithCString(NULL, str, kCFStringEncodingUTF8));
CFStringRef obj = cfstr.get();
3

Другие решения

Не уверен, что этого достаточно, но … если я не ошибаюсь, деструктор использует указатель на тип, а не объект типа

Я имею в виду … вы должны определить тип как

std::unique_ptr<CFStringRef, std::function<void(CFStringRef * )>>
^
note the pointer ---------------|

и лямбда должна получить (и использовать) указатель

[](CFStringRef * pObj){ CFRelease(*pObj) /* ? */ };
2

Добавление части «почему» к ответу Макса:

Согласно unique_ptr доктор

-Deleter должен быть FunctionObject или lvalue ссылкой на FunctionObject или lvalue ссылкой на функцию, вызываемой с помощью
аргумент типа unique_ptr<T, Deleter>::pointer

куда unique_ptr<T, Deleter>::pointer объясняется member types

unique_ptr<T, Deleter>::pointer знак равно std::remove_reference<Deleter>::type::pointer если этот тип
существует, иначе T*, Должен удовлетворить NullablePointer

0
По вопросам рекламы ammmcru@yandex.ru
Adblock
detector