Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions input.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,17 @@ namespace utils {
}


//-----------------------------------------------------------------//
/*!
@brief 変換ステータスを返す
@return 変換が全て正常なら「true」
*/
//-----------------------------------------------------------------//
explicit operator bool() const noexcept {
return error_ == error::none;
}


//-----------------------------------------------------------------//
/*!
@brief 正常変換数を取得
Expand Down