Skip to content

Commit 84dbbe2

Browse files
fix forward declaration
1 parent 94864ae commit 84dbbe2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

vpr/src/analytical_place/ap_draw_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <string>
1111

1212
// Forward declarations
13-
class PartialPlacement;
13+
struct PartialPlacement;
1414

1515
// Types to indicate the type of drawing operation
1616
enum class APDrawType {

vpr/src/route/router_lookahead/router_lookahead_compressed_map.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CompressedMapLookahead : public RouterLookahead {
3737
VPR_THROW(VPR_ERROR_ROUTE, "CompressedMapLookahead::read unimplemented");
3838
}
3939

40-
void read_intra_cluster(const std::string& /*file*/) {
40+
void read_intra_cluster(const std::string& /*file*/) override {
4141
VPR_THROW(VPR_ERROR_ROUTE, "CompressedMapLookahead::read_intra_cluster unimplemented");
4242
}
4343

vpr/src/timing/PreClusterTimingManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Forward declarations.
1616
class AtomLookup;
1717
class AtomNetlist;
18-
class PartialPlacement;
18+
struct PartialPlacement;
1919
class PlaceDelayModel;
2020
class PreClusterDelayCalculator;
2121
class Prepacker;

0 commit comments

Comments
 (0)