Fix build: some don't like IntrusivePtr default arg w/ incomplete type

This commit is contained in:
Jon Siwek 2020-05-22 00:09:14 -07:00
parent 052104d5d2
commit 8a3cd4c65b
2 changed files with 5 additions and 1 deletions

View file

@ -136,7 +136,8 @@ public:
/**
* Returns the script-layer record representation of the header.
*/
IntrusivePtr<RecordVal> ToVal(IntrusivePtr<VectorVal> chain = nullptr) const;
IntrusivePtr<RecordVal> ToVal(IntrusivePtr<VectorVal> chain) const;
IntrusivePtr<RecordVal> ToVal() const;
[[deprecated("Remove in v4.1. Use ToVal() instead.")]]
RecordVal* BuildRecordVal(VectorVal* chain = nullptr) const;