Skip to content

Commit

Permalink
More Windows cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wrwilliams committed Oct 31, 2016
1 parent b7a18a1 commit 2ace882
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions symtabAPI/src/Object-nt.C
Expand Up @@ -1116,8 +1116,8 @@ void fixup_filename(std::string &filename)

Object::Object(MappedFile *mf_,
bool defensive,
void (*err_func)(const char *), bool alloc_syms) :
AObject(mf_, err_func),
void (*err_func)(const char *), bool alloc_syms, Symtab *st) :
AObject(mf_, err_func, st),
curModule( NULL ),
baseAddr( 0 ),
imageBase( 0 ),
Expand Down
4 changes: 2 additions & 2 deletions symtabAPI/src/Object-nt.h
Expand Up @@ -176,7 +176,7 @@ class Object : public AObject

public:
SYMTAB_EXPORT Object(MappedFile *, bool defensive,
void (*)(const char *) = log_msg, bool alloc_syms = true, Symtab*);
void (*)(const char *) = log_msg, bool alloc_syms = true, Symtab* st = NULL);

SYMTAB_EXPORT virtual ~Object( void );
SYMTAB_EXPORT std::string getFileName() const { return mf->filename(); }
Expand Down Expand Up @@ -240,7 +240,7 @@ class Object : public AObject
SYMTAB_EXPORT void parseFileLineInfo();
SYMTAB_EXPORT void parseLineInfoForAddr(Offset)
{
parseFileLineInfo(associated_symtab);
parseFileLineInfo();
}

SYMTAB_EXPORT void FindInterestingSections( bool, bool );
Expand Down

0 comments on commit 2ace882

Please sign in to comment.