MathWebSearch / mws

MathWebSearch Implementation
https://search.mathweb.org/
GNU General Public License v3.0
46 stars 12 forks source link

Remove throw() function declarations and move to doxygen doc #16

Closed cprodescu closed 9 years ago

cprodescu commented 10 years ago

[1] http://www.gotw.ca/publications/mill22.htm

 void foo throw (bar);

becomes

 /** @throw bar */
 void foo;