An attribute list cannot appear here
-
Xcode 15 firebase firestore 에서 컴파일 에러 발생할 때iOS 2023. 12. 2. 01:56
편법 주의 ⚠️ Xcode 14대에서 15로 올리고 나니, 아래 코드부분에서 An attribute list cannot appear here 에러가 발생하면서 컴파일이 되지 않을 때. // Public constant ABSL_CONST_INIT extern "C" const int64_t kFIRFirestoreCacheSizeUnlimited = Settings::CacheSizeUnlimited; ABSL_CONST_INIT 코드를 지워봅시다. xcode에서는 잠겨서 수정이 안 된다면 텍스트 편집기나 다른 파일로 열어서 삭제,,, // Public constant extern "C" const int64_t kFIRFirestoreCacheSizeUnlimited = Settings::CacheS..