Comment cleanup
This commit is contained in:
parent
c21768fae9
commit
97dd36c33c
1 changed files with 6 additions and 7 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue