mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix Windows linker errors and warnings.
This commit is contained in:
parent
e58e5303d6
commit
e41c9f7592
2 changed files with 3 additions and 2 deletions
|
@ -96,6 +96,7 @@
|
|||
#if defined(HAVE_FNMATCH_H)
|
||||
# include <fnmatch.h>
|
||||
#elif defined(HAVE_SHLWAPI_H)
|
||||
# define NO_SHLWAPI_ISOS
|
||||
# include <shlwapi.h>
|
||||
#endif
|
||||
#include <stdarg.h> // For va_list and related operations
|
||||
|
@ -1467,7 +1468,7 @@ FlagRegisterer::FlagRegisterer(const char* name,
|
|||
|
||||
// Force compiler to generate code for the given template specialization.
|
||||
#define INSTANTIATE_FLAG_REGISTERER_CTOR(type) \
|
||||
template FlagRegisterer::FlagRegisterer( \
|
||||
template GFLAGS_DLL_DECL FlagRegisterer::FlagRegisterer( \
|
||||
const char* name, const char* help, const char* filename, \
|
||||
type* current_storage, type* defvalue_storage)
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
// We always want to import variables declared in user code
|
||||
#ifndef GFLAGS_DLL_DECLARE_FLAG
|
||||
# ifdef _MSC_VER
|
||||
# if @GFLAGS_IS_A_DLL@ && defined(_MSC_VER)
|
||||
# define GFLAGS_DLL_DECLARE_FLAG __declspec(dllimport)
|
||||
# else
|
||||
# define GFLAGS_DLL_DECLARE_FLAG
|
||||
|
|
Loading…
Add table
Reference in a new issue