template の複数の型の順番
先日作成した template . template <class V3, class VT> V3 ToV3 (const VT& vt,const long type) 型の順番で,戻り値の型 […]
::ToV3<Vd3,Vd2>(v2,to_x0y) で C2784
次の様な template の利用で,C2784 エラー. Vd2 v2(1,2) ; Vd3 v3 = ::ToV3<Vd3,Vd2>(v2,to_x0y) ; \\DevS\...\tovxx.hxx(1 […]
template で複数の型を指定
template で複数の型を指定する場合は,カンマで区切って指定すれば良い. template <class V2, class V3> V2 ToV2 (const V3& v3,const lo […]
WEB SQL Injection Attempt -87
ルータ RT-AC86U の AiProtection ではじかれているが,今日は Web サーバへの攻撃が多い? 2018-11-22 18:06:23 External Attacks 129.121.176.2 […]
ファイルの検索
あるフォルダ内のファイルを列挙するコード MFC v_tstring EnumFiles_MFC (c_tstring& path,const bool skipDot=true) { v_tstring foundF […]
Chrome の「Google で画像を検索」
Chrome でちょっと面白い機能を見つけたのでメモ. 画像を右クリックして「Google で画像を検索」. 類似画像が表示される. もとの画像によっては,かなり近い画像が見つかることもある. Is this 投稿 us […]
vector<Xxxx<T>> の利用でのエラー
template <class T> Extent2<T> E2_GetExtent (const std::vector<VLine2<T>>& lins) // […]