Add sensible constructor.
git-svn-id: http://root.cern.ch/svn/root/trunk@46319 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
parent
a7261215a3
commit
f8d42d206f
@ -10,6 +10,7 @@
|
||||
#include "clang/Sema/ExternalSemaSource.h"
|
||||
#include "clang/Sema/Weak.h"
|
||||
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
|
||||
#include <utility>
|
||||
@ -36,10 +37,15 @@ namespace cling {
|
||||
class MultiplexExternalSemaSource : public clang::ExternalSemaSource {
|
||||
|
||||
private:
|
||||
llvm::SmallVector<ExternalSemaSource*, 4> m_Sources;
|
||||
llvm::SmallVector<ExternalSemaSource*, 4> m_Sources; // doesn't own them.
|
||||
|
||||
public:
|
||||
MultiplexExternalSemaSource() { }
|
||||
|
||||
///\brief Constructs the external source with given elements.
|
||||
///
|
||||
///\param[in] sources - Array of ExternalSemaSources.
|
||||
///
|
||||
MultiplexExternalSemaSource(llvm::ArrayRef<ExternalSemaSource*> sources);
|
||||
|
||||
~MultiplexExternalSemaSource();
|
||||
|
||||
|
@ -11,6 +11,13 @@
|
||||
using namespace clang;
|
||||
|
||||
namespace cling {
|
||||
MultiplexExternalSemaSource::MultiplexExternalSemaSource(
|
||||
llvm::ArrayRef<ExternalSemaSource*> sources) {
|
||||
for (size_t i = 0; i < sources.size(); ++i)
|
||||
m_Sources.push_back(sources[i]);
|
||||
}
|
||||
|
||||
|
||||
// pin the vtable here.
|
||||
MultiplexExternalSemaSource::~MultiplexExternalSemaSource() {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user