File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class TimingPathElem {
6060 TimingPathElem () = default ;
6161 TimingPathElem (TimingTag tag_v,
6262 NodeId node_v,
63- EdgeId incomming_edge_v)
63+ EdgeId incomming_edge_v) noexcept
6464 : tag_(tag_v)
6565 , node_(node_v)
6666 , incomming_edge_(incomming_edge_v) {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ std::vector<TimingPath> collect_worst_timing_paths(const TimingGraph& timing_gra
1616 std::vector<TimingPath> paths;
1717
1818 struct TagNode {
19- TagNode (TimingTag t, NodeId n)
19+ TagNode (TimingTag t, NodeId n) noexcept
2020 : tag(t), node(n) {}
2121
2222 TimingTag tag;
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class StrongId {
177177 constexpr StrongId () : id_(sentinel) {}
178178
179179 // Only allow explict constructions from a raw Id (no automatic conversions)
180- explicit StrongId (T id): id_(id) {}
180+ explicit StrongId (T id) noexcept : id_(id) {}
181181
182182 // Allow some explicit conversion to useful types
183183
You can’t perform that action at this time.
0 commit comments