Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make protected field const (sonar).
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 12 Apr 2018 21:03:47 +0000 (23:03 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 13 Apr 2018 10:36:20 +0000 (12:36 +0200)
src/surf/plugins/host_dvfs.cpp

index 9dac337..3daf923 100644 (file)
@@ -28,7 +28,7 @@ namespace dvfs {
 class Governor {
 
 protected:
-  simgrid::s4u::Host* host;
+  simgrid::s4u::Host* const host;
 
 public:
   double sampling_rate;