1
0

Merge pull request #1191 from edcote/patch-2

remove string type ambiguity in header
This commit is contained in:
Megan Wachs
2018-01-15 13:33:27 -08:00
committed by GitHub

View File

@ -12,7 +12,7 @@ class VerilatedVcdFILE : public VerilatedVcdFile {
public:
VerilatedVcdFILE(FILE* file) : file(file) {}
~VerilatedVcdFILE() {}
bool open(const string& name) override {
bool open(const std::string& name) override {
// file should already be open
return file != NULL;
}