Fix header preprocessor alignment

This commit is contained in:
Alexandre Lissy 2019-09-16 15:27:56 +02:00
parent ea1f2b1995
commit 458692692e
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ extern "C" {
#ifndef SWIG
#if defined _MSC_VER
#define DEEPSPEECH_EXPORT __declspec(dllexport)
#else /*End of _MSC_VER*/
#else
#define DEEPSPEECH_EXPORT __attribute__ ((visibility("default")))
#endif /*End of SWIG*/
#endif /*End of _MSC_VER*/
#else
#define DEEPSPEECH_EXPORT
#endif