1
0
Fork 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
commit 6c6afc5bc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;
}