summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2015-04-24 00:35:08 -0700
committerClark Barrett <barrett@cs.nyu.edu>2015-04-24 00:35:08 -0700
commit0bf9566178b30b81ee27ead42bcbfaa668f738e1 (patch)
tree993c7c8750f1a42080b139ac216ecdb7b1780ae3 /src/context
parent9f2ff7173d434162d49814ba3f24a9f9db21d476 (diff)
Fix compiler errors due to unbalanced throw specifiers.
Diffstat (limited to 'src/context')
-rw-r--r--src/context/cdchunk_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/cdchunk_list.h b/src/context/cdchunk_list.h
index 16aa32176..8c2e4066e 100644
--- a/src/context/cdchunk_list.h
+++ b/src/context/cdchunk_list.h
@@ -136,7 +136,7 @@ protected:
d_size(size),
d_sizeAlloc(sizeAlloc) {
}
- ~CDChunkListSave() {
+ ~CDChunkListSave() throw() {
this->destroy();
}
ContextObj* save(ContextMemoryManager* pCMM) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback