Commit d599ae3b authored by James Sedgwick's avatar James Sedgwick Committed by Viswanath Sivakumar

fix clang build

Summary: PipelineBase needs something virtual so we can dynamic_cast from it down to the real pipeline, as we do in Proxy

Test Plan: built proxy with clang

Reviewed By: hans@fb.com

Subscribers: fugalh, mathieubaudet, folly-diffs@, jsedgwick, yfeldblum, chalfant

FB internal diff: D2075855

Tasks: 7077419, 7077417

Signature: t1:2075855:1431708780:03ce8d8f40cdb56d24baf75f4dc29004e5ea4c7a
parent e872b440
...@@ -33,6 +33,8 @@ class PipelineManager { ...@@ -33,6 +33,8 @@ class PipelineManager {
class PipelineBase { class PipelineBase {
public: public:
virtual ~PipelineBase() {}
void setPipelineManager(PipelineManager* manager) { void setPipelineManager(PipelineManager* manager) {
manager_ = manager; manager_ = manager;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment