phobos/std/concurrencybase.d
Sebastian Wilzbach ec47ac4224 Remove the WEB macro in favor of HTTP
replacement: sed 's/\$(WEB/\$(HTTP/g' -i **/*.d
2016-06-16 00:14:51 +02:00

20 lines
471 B
D

// Written in the D programming language.
/**
* The only purpose of this module is to do the static construction for
* std.concurrency, to eliminate cyclic construction errors.
*
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Source: $(PHOBOSSRC std/_concurrencybase.d)
*/
module std.concurrencybase;
import core.sync.mutex;
extern(C) void std_concurrency_static_this();
shared static this()
{
std_concurrency_static_this();
}