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:
parent
9dcb6aa640
commit
36e34862cc
2 changed files with 2 additions and 3 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
#include "lazyFileReader.h"
|
||||
#include "lazyInstMgr.h"
|
||||
#include "lazyTypes.h"
|
||||
#include "instMgrHelper.h"
|
||||
|
||||
#include "current_function.hpp"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue