coords -> coordsA

fixes shadow warning
diff --git a/poppler/Annot.cc b/poppler/Annot.cc
index e256384..c6d07b4 100644
--- a/poppler/Annot.cc
+++ b/poppler/Annot.cc
@@ -287,8 +287,8 @@
   parsePathArray(array);
 }
 
-AnnotPath::AnnotPath(std::vector<AnnotCoord> &&coords) {
-  this->coords = std::move(coords);
+AnnotPath::AnnotPath(std::vector<AnnotCoord> &&coordsA) {
+  coords = std::move(coordsA);
 }
 
 AnnotPath::~AnnotPath() = default;