Skip to content

Commit d6bb20d

Browse files
committed
use instMgrBase in SDAI_Select operator test
1 parent 6cb750a commit d6bb20d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/clstepcore/test/test_operators_SDAI_Select.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ class TestSdaiSelect: public SDAI_Select {
4545
SDAI_Select* NewSelect(){ return (SDAI_Select *)0; }
4646
BASE_TYPE ValueType() const { return sdaiBOOLEAN; }
4747
void STEPwrite_content( std::ostream& /*o*/, const char* /*a*/ ) const {}
48-
Severity StrToVal_content( const char* /*a*/, InstMgr* /*m*/ ) { return SEVERITY_NULL; }
49-
Severity STEPread_content(std::istream& i, InstMgr* m, const char* c, int n, const char* d) {
48+
Severity StrToVal_content( const char* /*a*/, InstMgrBase* /*m*/ ) { return SEVERITY_NULL; }
49+
Severity STEPread_content(std::istream& i, InstMgrBase* m, const char* c, int n, const char* d) {
5050
(void)i; (void)m; (void)c; (void)n; (void)d; return SEVERITY_NULL;
5151
}
5252
};
53+
5354
/// \return true for success
5455
bool testOperatorEq() {
5556
Schema * sch = 0;

0 commit comments

Comments
 (0)