Comment cleanup

This commit is contained in:
eidheim 2017-07-18 22:04:38 +02:00
commit 97dd36c33c

View file

@ -8,7 +8,6 @@
#include <string> #include <string>
#include <vector> #include <vector>
//Moving these to a seperate namespace for minimal global namespace cluttering does not work with clang++
#include <openssl/buffer.h> #include <openssl/buffer.h>
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/md5.h> #include <openssl/md5.h>
@ -17,7 +16,7 @@
namespace SimpleWeb { namespace SimpleWeb {
// TODO 2017: remove workaround for MSVS 2012 // TODO 2017: remove workaround for MSVS 2012
#if _MSC_VER == 1700 // MSVS 2012 has no definition for round() #if _MSC_VER == 1700 // MSVS 2012 has no definition for round()
inline double round(double x) { //custom definition of round() for positive numbers inline double round(double x) { // Custom definition of round() for positive numbers
return floor(x + 0.5); return floor(x + 0.5);
} }
#endif #endif