mirror of
https://github.com/boostorg/nowide.git
synced 2026-01-19 16:32:12 +00:00
Use the more concise format omitting the reference to the license file and refer to the URL only.
15 lines
235 B
C++
15 lines
235 B
C++
// Copyright (c) 2021 Alexander Grund
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
class Foo
|
|
{};
|
|
|
|
Foo foo __attribute__((init_priority(101)));
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|