summaryrefslogtreecommitdiff
path: root/src/cpu/minor/buffers.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/minor/buffers.hh')
-rw-r--r--src/cpu/minor/buffers.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cpu/minor/buffers.hh b/src/cpu/minor/buffers.hh
index 864b29e0c..edf87dec5 100644
--- a/src/cpu/minor/buffers.hh
+++ b/src/cpu/minor/buffers.hh
@@ -118,7 +118,11 @@ class NoBubbleTraits
{
public:
static bool isBubble(const ElemType &) { return false; }
- static ElemType bubble() { assert(false); }
+ static ElemType
+ bubble()
+ {
+ panic("bubble called but no bubble interface");
+ }
};
/** Pass on call to the element */