OSDN Git Service

[Refactor] #890 コンストラクタへの参照がVSから見えなくなっていたので修正 (型は一致しているのでコンパイルは通っていた)
authorHourier <66951241+Hourier@users.noreply.github.com>
Sun, 31 Jul 2022 08:19:40 +0000 (17:19 +0900)
committerHourier <66951241+Hourier@users.noreply.github.com>
Sun, 31 Jul 2022 08:29:21 +0000 (17:29 +0900)
src/target/projection-path-calculator.h

index 36a1af4..a7f0b8d 100644 (file)
@@ -9,7 +9,7 @@ class projection_path {
 public:
     using const_iterator = std::vector<std::pair<int, int>>::const_iterator;
 
-    projection_path(PlayerType *player_ptr, int range, int y1, int x1, int y2, int x2, BIT_FLAGS flg);
+    projection_path(PlayerType *player_ptr, POSITION range, POSITION y1, POSITION x1, POSITION y2, POSITION x2, BIT_FLAGS flag);
     const_iterator begin() const;
     const_iterator end() const;
     const std::pair<int, int> &front() const;