You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-26 15:46:23 +00:00
Style: Apply clang-format (3.9.1) to Obj-C++ files
This commit is contained in:
@@ -35,17 +35,14 @@
|
||||
|
||||
#include <Foundation/NSString.h>
|
||||
|
||||
|
||||
String DirAccessOSX::fix_unicode_name(const char* p_name) const {
|
||||
String DirAccessOSX::fix_unicode_name(const char *p_name) const {
|
||||
|
||||
String fname;
|
||||
NSString* nsstr = [[NSString stringWithUTF8String: p_name] precomposedStringWithCanonicalMapping];
|
||||
NSString *nsstr = [[NSString stringWithUTF8String:p_name] precomposedStringWithCanonicalMapping];
|
||||
|
||||
fname.parse_utf8([nsstr UTF8String]);
|
||||
|
||||
return fname;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif //posix_enabled
|
||||
|
||||
Reference in New Issue
Block a user