You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think visualD does this to some extent.
Examples:
version(none){
...
}
other examples:
static if(false){}
version(myversion){} //when not given in command line version identifier
version(OSX){} // when on linux
More complex case (could be supported later):
static if(some_CT_condition){} // upon rebuild, evaluate those
static if(isDynamicArray!T) {} //gray out if no code path leads to true
The text was updated successfully, but these errors were encountered:
I think visualD does this to some extent.
Examples:
version(none){
...
}
other examples:
static if(false){}
version(myversion){} //when not given in command line version identifier
version(OSX){} // when on linux
More complex case (could be supported later):
static if(some_CT_condition){} // upon rebuild, evaluate those
static if(isDynamicArray!T) {} //gray out if no code path leads to true
The text was updated successfully, but these errors were encountered: