-- Leo's gemini proxy

-- Connecting to git.thebackupbox.net:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini

repo: rxvt-unicode-sixel
action: commit
revision:
path_from:
revision_from: de70edb24e1a2b7f1c80c9a7e7f61b99ec70005d:
path_to:
revision_to:

git.thebackupbox.net

rxvt-unicode-sixel

git://git.thebackupbox.net/rxvt-unicode-sixel

commit de70edb24e1a2b7f1c80c9a7e7f61b99ec70005d
Author: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
Date:   Thu Oct 23 22:39:40 2014 +0000

    Add missing exception specifications to new and delete.

diff --git a/src/rxvtutil.h b/src/rxvtutil.h

index 688820348d69fcc8fb06ce9222880b9ec21fb4a0..

index ..0b566d58959952874c39faffc1055cf1bdb06bcc 100644

--- a/src/rxvtutil.h
+++ b/src/rxvtutil.h
@@ -90,14 +90,14 @@ struct rxvt_vec : simplevec<void *>
 #endif

 inline void *
-operator new (size_t size)
+operator new (size_t size) throw (std::bad_alloc)
 {
   // TODO: use rxvt_malloc
   return malloc (size);
 }

 inline void
-operator delete (void *p)
+operator delete (void *p) throw ()
 {
   free (p);
 }

-----END OF PAGE-----

-- Response ended

-- Page fetched on Sun Jun 2 12:49:28 2024