mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
Remove use of automatic adjacent string literal concatenation from phobos
This commit is contained in:
parent
cf5a46d716
commit
a656f26e9e
26 changed files with 94 additions and 94 deletions
|
@ -626,7 +626,7 @@ private void _send(T...)( MsgType type, Tid tid, T vals )
|
|||
void receive(T...)( T ops )
|
||||
in
|
||||
{
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "~
|
||||
"or thisTid was passed to a running thread.");
|
||||
}
|
||||
body
|
||||
|
@ -708,7 +708,7 @@ private template receiveOnlyRet(T...)
|
|||
receiveOnlyRet!(T) receiveOnly(T...)()
|
||||
in
|
||||
{
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "~
|
||||
"or thisTid was passed to a running thread.");
|
||||
}
|
||||
body
|
||||
|
@ -775,7 +775,7 @@ unittest
|
|||
bool receiveTimeout(T...)( Duration duration, T ops )
|
||||
in
|
||||
{
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "
|
||||
assert(mbox !is null, "Cannot receive a message until a thread was spawned "~
|
||||
"or thisTid was passed to a running thread.");
|
||||
}
|
||||
body
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue