Foundation → CoreFoundation

The name fits the content better now.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2024-09-30 13:27:48 +02:00
parent eac816c487
commit 4fc1d6c475

View File

@ -6,7 +6,7 @@
#pragma once #pragma once
#include "common.hpp" #include "common.hpp"
#import <Foundation/Foundation.h> #include <CoreFoundation/CoreFoundation.h>
#include <memory> #include <memory>
namespace macstd { namespace macstd {
@ -38,4 +38,4 @@ namespace macstd {
/// \sa [CFType](https://developer.apple.com/documentation/corefoundation/cftype) /// \sa [CFType](https://developer.apple.com/documentation/corefoundation/cftype)
template <class T> template <class T>
using CFType = std::unique_ptr<T, CFRelease_delete>; using CFType = std::unique_ptr<T, CFRelease_delete>;
} }