diff options
Diffstat (limited to 'views/version.txt')
| -rw-r--r-- | views/version.txt | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/views/version.txt b/views/version.txt index 07683c2..db9b02e 100644 --- a/views/version.txt +++ b/views/version.txt @@ -5,3 +5,13 @@ struct Version {    int patch;  }  enum ver = Version(0, 18, 0); +version (Posix) { +  version (DigitalMars) { +  } else version (LDC) { +  } else version (GNU) { +  } else { +    static assert (0, "Unsupported D compiler"); +  } +} else { +  static assert (0, "Unsupported D compiler"); +}  | 
