Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Make variable private.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 26 Sep 2019 13:03:27 +0000 (15:03 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 26 Sep 2019 13:04:23 +0000 (15:04 +0200)
src/smpi/include/smpi_f2c.hpp

index 509771e..455973c 100644 (file)
@@ -23,12 +23,14 @@ class F2C {
     // Beware of collisions if id in mpif.h is not unique
     static std::unordered_map<std::string, F2C*>* f2c_lookup_;
     static int f2c_id_;
+    int my_f2c_id_;
+
   protected:
     static std::unordered_map<std::string, F2C*>* f2c_lookup();
     static void set_f2c_lookup(std::unordered_map<std::string, F2C*>* map);
     static int f2c_id();
     static void f2c_id_increment();
-    int my_f2c_id_;
+
   public:
     char* get_my_key(char* key);
     static char* get_key(char* key, int id);