view dwt/dwthelper/utils.d @ 25:fc2b263b8a3f

Merged back the System.arraycopy and use a System class
author Frank Benoit <benoit@tionex.de>
date Tue, 08 Jan 2008 01:23:25 +0100
parents 0c78fa47d476
children 09f5459a5014
line wrap: on
line source

/**
 * Authors: Frank Benoit <keinfarbton@googlemail.com>
 */
module dwt.dwthelper.utils;

public import dwt.dwthelper.System;

import tango.io.Stdout;
import tango.stdc.stdlib : exit;

void implMissing( char[] file, uint line ){
    Stderr.formatln( "implementation missing in file {} line {}", file, line );
    Stderr.formatln( "exiting ..." );
    exit(1);
}