isDebugBuild static method

bool isDebugBuild()

Implementation

static bool isDebugBuild()
{
    bool isDebug = false;
    assert(isDebug = true);

    return isDebug;
}