File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ class LLDB_API SBReproducer {
20
20
public:
21
21
static const char *Capture ();
22
22
static const char *Capture (const char *path);
23
- static const char *Replay (const char *path, bool skip_version_check = false );
23
+ static const char *Replay (const char *path);
24
+ static const char *Replay (const char *path, bool skip_version_check);
24
25
static const char *GetPath ();
25
26
static bool Generate ();
26
27
};
Original file line number Diff line number Diff line change @@ -124,6 +124,10 @@ const char *SBReproducer::Capture(const char *path) {
124
124
return nullptr ;
125
125
}
126
126
127
+ const char *SBReproducer::Replay (const char *path) {
128
+ return SBReproducer::Replay (path, false );
129
+ }
130
+
127
131
const char *SBReproducer::Replay (const char *path, bool skip_version_check) {
128
132
static std::string error;
129
133
if (auto e = Reproducer::Initialize (ReproducerMode::Replay, FileSpec (path))) {
You can’t perform that action at this time.
0 commit comments