File tree 4 files changed +10
-7
lines changed 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class lvsaa_single_external_set_summaryt : public summaryt
51
51
lvsaa_single_external_set_summaryt &
52
52
operator =(lvsaa_single_external_set_summaryt &&) = default ;
53
53
54
- std::string kind () const noexcept override
54
+ std::string kind () const override
55
55
{
56
56
return " lvsaa" ;
57
57
}
Original file line number Diff line number Diff line change @@ -39,12 +39,15 @@ class summaryt
39
39
summaries. For example, it can be a unique name of an analysis which has
40
40
computed them.
41
41
\*******************************************************************/
42
- virtual std::string kind () const noexcept = 0;
42
+ virtual std::string kind () const = 0;
43
43
44
44
/* ******************************************************************\
45
45
A textual human-readable description of the summaries.
46
46
\*******************************************************************/
47
- virtual std::string description () const noexcept { return std::string (); }
47
+ virtual std::string description () const
48
+ {
49
+ return std::string ();
50
+ }
48
51
};
49
52
50
53
#endif
Original file line number Diff line number Diff line change @@ -328,12 +328,12 @@ static void populate_formals_to_actuals(
328
328
// /
329
329
// //////////////////////////////////////////////////////////////////////////////
330
330
331
- std::string taint_summaryt::kind () const noexcept
331
+ std::string taint_summaryt::kind () const
332
332
{
333
333
return " cbmc://src/taint-analysis/taint_summary" ;
334
334
}
335
335
336
- std::string taint_summaryt::description () const noexcept
336
+ std::string taint_summaryt::description () const
337
337
{
338
338
return " Function summary of taint analysis of java web applications." ;
339
339
}
Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ class taint_summaryt:public summaryt
137
137
taint_summaryt &operator =(const taint_summaryt &) = delete ;
138
138
taint_summaryt &operator =(taint_summaryt &&) = default ;
139
139
140
- std::string kind () const noexcept override ;
141
- std::string description () const noexcept override ;
140
+ std::string kind () const override ;
141
+ std::string description () const override ;
142
142
143
143
const taint_summary_inputt& get_input () const noexcept
144
144
{
You can’t perform that action at this time.
0 commit comments