We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928d196 commit ec43f5aCopy full SHA for ec43f5a
Siv3D/include/Siv3D/JSON.hpp
@@ -529,7 +529,7 @@ namespace s3d
529
void push_back(const JSON& value);
530
531
/// @brief 所有しているデータを消去して空にします。
532
- void clear() const;
+ void clear();
533
534
/// @brief 渡されたキーが指す要素を削除します。
535
/// @param [in] name キー
Siv3D/src/Siv3D/JSON/SivJSON.cpp
@@ -929,7 +929,7 @@ namespace s3d
929
m_detail->get().push_back(value.m_detail->get());
930
}
931
932
- void JSON::clear() const
+ void JSON::clear()
933
{
934
if (not m_isValid)
935
0 commit comments