mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-18 09:49:02 +02:00
First part of rename to LDC.
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
* vararg support for extern(C) functions
|
||||
*/
|
||||
|
||||
module llvmdc.cstdarg;
|
||||
module ldc.cstdarg;
|
||||
|
||||
// Check for the right compiler
|
||||
version(LLVMDC)
|
||||
version(LDC)
|
||||
{
|
||||
// OK
|
||||
}
|
||||
else
|
||||
{
|
||||
static assert(false, "This module is only valid for LLVMDC");
|
||||
static assert(false, "This module is only valid for LDC");
|
||||
}
|
||||
|
||||
alias void* va_list;
|
||||
|
||||
@@ -7,16 +7,16 @@
|
||||
*
|
||||
*/
|
||||
|
||||
module llvmdc.intrinsics;
|
||||
module ldc.intrinsics;
|
||||
|
||||
// Check for the right compiler
|
||||
version(LLVMDC)
|
||||
version(LDC)
|
||||
{
|
||||
// OK
|
||||
}
|
||||
else
|
||||
{
|
||||
static assert(false, "This module is only valid for LLVMDC");
|
||||
static assert(false, "This module is only valid for LDC");
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user