-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Closed
Labels
Description
Lines 152 to 158 in 68f3c7e
union direct_or_indirect { | |
char direct[sizeof(T) * N]; | |
struct { | |
size_type capacity; | |
char* indirect; | |
}; | |
} _union; |
I'm opening an issue as its fix is too tiny to become a pull request.
Can be solved by renaming the struct to
struct indirect_contents {
size_type capacity;
char* indirect;
};