Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit d8477705 authored by gsell's avatar gsell
Browse files

opt-pilot: Clang warnings/errors fixed

parent be26000d
No related branches found
No related tags found
No related merge requests found
...@@ -55,10 +55,19 @@ private: ...@@ -55,10 +55,19 @@ private:
// define a mapping to arguments in argument vector // define a mapping to arguments in argument vector
boost::tuple<std::string, int> argument_types; boost::tuple<std::string, int> argument_types;
// :FIXME: remove unused enum
#if 0
enum { enum {
peak_filename peak_filename
, turn_number , turn_number
} argument_type_id; } argument_type_id;
#endif
}; };
#endif #endif
// vi: set et ts=4 sw=4 sts=4:
// Local Variables:
// mode:c
// c-basic-offset: 4
// indent-tabs-mode:nil
// End:
...@@ -85,12 +85,14 @@ private: ...@@ -85,12 +85,14 @@ private:
// define a mapping to arguments in argument vector // define a mapping to arguments in argument vector
boost::tuple<std::string, std::string, std::string> argument_types; boost::tuple<std::string, std::string, std::string> argument_types;
// :FIXME: unused enum
#if 0
enum { enum {
measurement_filename measurement_filename
, var_name , var_name
, stat_filename , stat_filename
} argument_type_id; } argument_type_id;
#endif
}; };
#endif #endif
...@@ -79,13 +79,21 @@ private: ...@@ -79,13 +79,21 @@ private:
// define a mapping to arguments in argument vector // define a mapping to arguments in argument vector
boost::tuple<std::string, std::string, int, int> argument_types; boost::tuple<std::string, std::string, int, int> argument_types;
// :FIXME: remove unused enum
#if 0
enum { enum {
meas_filename meas_filename
, sim_filename , sim_filename
, begin , begin
, end , end
} argument_type_id; } argument_type_id;
#endif
}; };
#endif #endif
// vi: set et ts=4 sw=4 sts=4:
// Local Variables:
// mode:c
// c-basic-offset: 4
// indent-tabs-mode:nil
// End:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment