cllazyfile: work around LNK2005 error. had to tweak class members so MSVC didn't see MgrNodeBase class twice.

suspect there is a better solution, but I'm not sure what it would be
This commit is contained in:
Mark Pictor 2015-08-03 21:50:19 -04:00
parent 9dcb6aa640
commit 36e34862cc
2 changed files with 2 additions and 3 deletions

View file

@ -73,8 +73,8 @@ class SC_LAZYFILE_EXPORT lazyInstMgr {
void openFile( std::string fname );
void addLazyInstance( namedLazyInstance inst );
instMgrAdapter * getAdapter() {
return _ima;
InstMgrBase * getAdapter() {
return ( InstMgrBase * ) _ima;
}
instanceRefs_t * getFwdRefs() {

View file

@ -17,7 +17,6 @@
#include "lazyFileReader.h"
#include "lazyInstMgr.h"
#include "lazyTypes.h"
#include "instMgrHelper.h"
#include "current_function.hpp"