2018-07-01から1ヶ月間の記事一覧

C++

C++. #include <string> class Widget { private: std::string m_str; public: explicit Widget(const std::string& str) : m_str(str) {}; }; こういうコードを書くとわたしの CLion (エディタ) が次のようなメッセージを出してくる. Clang-Tidy: Pass by value and</string>…