OSDN Git Service

[Refactor] 未使用になったダイス値セット関数を削除
[hengbandforosx/hengbandosx.git] / src / info-reader / json-reader-util.h
index 74847f3..053595d 100644 (file)
@@ -15,7 +15,6 @@ template <typename T>
 concept IntegralOrEnum = std::integral<T> || std::is_enum_v<T>;
 
 errr info_set_string(const nlohmann::json &json, std::string &data, bool is_required);
-errr info_set_dice(const nlohmann::json &json, DICE_NUMBER &dd, DICE_SID &ds, bool is_required);
 errr info_set_dice(const nlohmann::json &json, Dice &dice, bool is_required);
 
 /*!