mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
When explicitly asked not to load the C++ standard library, Swift should not emit warnings for missing libstdc++. This fixes a compiler warning when building the Cxx module on Linux.
6 lines
126 B
C
6 lines
126 B
C
// This file intentionally does not import anything from the C++ stdlib.
|
|
|
|
inline int my_sum(int a, int b) {
|
|
return a + b;
|
|
}
|