mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
3269c0649b
The new macro aliasing uncovered a latent issue where we would attempt to perform an optional-to-optional conversion on a type that is non-optional though may be aliased to an optional. `CVaList` is sometimes an optional pointer and would be interpreted as an optional type which would fail the assertion in the optional-to-optional conversion.
7 lines
125 B
C
7 lines
125 B
C
#pragma once
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define u_vformatMessage swift_u_vformatMessage
|
|
void u_vformatMessage(int i, va_list ap);
|