When I use `#import "Ono.h"` in `.mm`file ,it raises error below ``` Use of '@import' when C++ modules are disabled, consider using -fmodules and -fcxx-modules ``` but I change `@import Foundation;` with `#import <Foundation/Foundation.h>` in `Ono.h` ,it's fine
When I use
#import "Ono.h"in.mmfile ,it raises error belowbut I change
@import Foundation;with#import <Foundation/Foundation.h>inOno.h,it's fine