ログイン
編集不可のページディスカッション情報添付ファイル
clear/note/2013-06

MMA

2013年6月

06/04

06/06

06/08

06/10

誤ってパーティションテーブルを吹き飛ばした

諦めるのはまだ早い。

06/15

FreeBSDでネットワークトラフィックを監視する

systatコマンドを使う。

systat -ifstat 1

06/18

typedef redefinition

typedefの再定義はC11より前ではできないらしい。C++だとできる。

> cat typedef.c
typedef int A;
typedef int A;
int main(void) {}
> clang typedef.c
typedef.c:2:13: warning: redefinition of typedef 'A' is a C11 feature [-Wtypedef-redefinition]
typedef int A;
            ^
typedef.c:1:13: note: previous definition is here
typedef int A;
            ^

clear/note/2013-06 (最終更新日時 2013-06-18 17:50:34 更新者 clear)