You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the vmodule implementation is limited to GNU compilers as it uses a compiler specific extension for the VLOG_IS_ON() macro. This can be written using an inline lambda in Visual Studio 2015 and likely any compiler with C++11 support. It may also make sense to replace the current GNU specific implementation with a common one based on a lambda if the compiler supports it.
Here's an implementation that works with Visual Studio 2015 from vlog_is_on.h.
Currently the vmodule implementation is limited to GNU compilers as it uses a compiler specific extension for the VLOG_IS_ON() macro. This can be written using an inline lambda in Visual Studio 2015 and likely any compiler with C++11 support. It may also make sense to replace the current GNU specific implementation with a common one based on a lambda if the compiler supports it.
Here's an implementation that works with Visual Studio 2015 from vlog_is_on.h.
The text was updated successfully, but these errors were encountered: