...ing logging 4.0

はてなブログに移行しました。D言語の話とかいろいろ。

2008-06-20から1日間の記事一覧

Added Constraints to templates - dmd2.015

特殊化を使う,以前の書き方. import std.stdio; template factorial(int n) { enum factorial = n * factorial!(n-1); } template factorial(int n : 1) { enum factorial = 1; } void main() { writefln(factorial!(4));//24 } これからは特殊化を使わな…

vc8/9で並列コンパイル

設定の仕方がわかってなかったらしい. まず,stdafx.cppを「プリコンパイル済みヘッダを作成する」にする. 次に,stdafx.hをインクルードしている他の*.cppファイルを「プリコンパイル済みヘッダを使用する」にして,コンパイルオプションに /MPn を付ける…