Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Const qualifier is useless.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 2 Oct 2020 20:04:16 +0000 (22:04 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 2 Oct 2020 20:04:52 +0000 (22:04 +0200)
include/simgrid/Exception.hpp

index b7ab71f..61d7469 100644 (file)
@@ -92,7 +92,7 @@ public:
   /** Return the information about where the exception was thrown */
   xbt::ThrowPoint const& throw_point() const { return throwpoint_; }
 
-  std::string const resolve_backtrace() const { return throwpoint_.backtrace_.resolve(); }
+  std::string resolve_backtrace() const { return throwpoint_.backtrace_.resolve(); }
 
   /** Allow to carry a value (used by waitall/waitany) */
   int value = 0;