Skip to content
Snippets Groups Projects
Commit 07ee5782 authored by clc5q's avatar clc5q
Browse files

Make base class IsXternSegment() return false.

Former-commit-id: af82c76b188751e09224de631848a94cd246fe02
parent 6cfa13b8
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ class STARS_Segment_t
/* figure out what kind of segment this is */
virtual bool IsCodeSegment() =0 ;
virtual bool IsXternSegment() =0 ;
virtual bool IsXternSegment() { return false; };
virtual bool IsDataSegment() =0 ;
virtual bool IsCommonSegment() =0 ;
virtual bool IsBSSSegment() =0 ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment