From 07ee5782f9ba9c390edadfc63ca0dea402a592bf Mon Sep 17 00:00:00 2001
From: clc5q <clc5q@git.zephyr-software.com>
Date: Fri, 3 Jul 2015 15:42:29 +0000
Subject: [PATCH] Make base class IsXternSegment() return false.

Former-commit-id: af82c76b188751e09224de631848a94cd246fe02
---
 include/interfaces/abstract/STARSSegment.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/interfaces/abstract/STARSSegment.h b/include/interfaces/abstract/STARSSegment.h
index 6d19a77a..f1c98417 100644
--- a/include/interfaces/abstract/STARSSegment.h
+++ b/include/interfaces/abstract/STARSSegment.h
@@ -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 ;
-- 
GitLab