mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-31 18:13:44 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
10 lines
226 B
Objective-C
10 lines
226 B
Objective-C
#pragma once
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <string_view>
|
|
|
|
inline NSString * ToNSString(std::string_view sv)
|
|
{
|
|
return [[NSString alloc] initWithBytes:sv.data() length:sv.size() encoding:NSUTF8StringEncoding];
|
|
}
|