Pārlūkot izejas kodu

Fixed small bug that prevented compilation.

Ovidio Peña Rodríguez 9 gadi atpakaļ
vecāks
revīzija
762bb5e0ca
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/nmie.h

+ 1 - 1
src/nmie.h

@@ -95,7 +95,7 @@ namespace nmie {
     double GetSizeParameter();
     std::vector<double> GetLayersSize(){return size_param_;};
     std::vector<std::complex<double> > GetLayersIndex(){return refractive_index_;};
-    std::vector<std::array<double, 3> > GetFieldCoords(){return coords_;};
+    std::vector<std::vector<double> > GetFieldCoords(){return coords_;};
 
     std::vector<std::vector< std::complex<double> > > GetFieldE(){return E_;};   // {X[], Y[], Z[]}
     std::vector<std::vector< std::complex<double> > > GetFieldH(){return H_;};