cpplint: Should have a space between // and comment [whitespace/comments]

This commit is contained in:
Carles Fernandez 2020-02-24 15:11:08 +01:00
parent 5fd7f8f8f6
commit 0986e4a66e
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@
// Ignore annoying warnings in MSVC
//
#if defined(_MSC_VER)
#pragma warning(disable : 4244) //'conversion' conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable : 4305) //'identifier' : truncation from 'type1' to 'type2'
#pragma warning(disable : 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable : 4305) // 'identifier' : truncation from 'type1' to 'type2'
#endif
//