#ifndef BOOST_FILESYSTEM_SRC_PRIVATE_CONFIG_HPP_
#define BOOST_FILESYSTEM_SRC_PRIVATE_CONFIG_HPP_
#include <boost/filesystem/config.hpp>
#if defined(BOOST_FILESYSTEM_HAS_INIT_PRIORITY)
#define BOOST_FILESYSTEM_INIT_PRIORITY(n) __attribute__ ((init_priority(n)))
#else
#define BOOST_FILESYSTEM_INIT_PRIORITY(n)
#endif
#define BOOST_FILESYSTEM_FUNC_PTR_INIT_PRIORITY 32767
#define BOOST_FILESYSTEM_PATH_GLOBALS_INIT_PRIORITY 32768
#if defined(__has_feature) && defined(__has_attribute)
#if __has_feature(memory_sanitizer) && __has_attribute(no_sanitize)
#define BOOST_FILESYSTEM_NO_SANITIZE_MEMORY __attribute__ ((no_sanitize("memory")))
#endif
#endif
#ifndef BOOST_FILESYSTEM_NO_SANITIZE_MEMORY
#define BOOST_FILESYSTEM_NO_SANITIZE_MEMORY
#endif
#if defined(_MSC_VER)
#if _MSC_VER < 1300 || _MSC_VER > 1900
typedef void (__cdecl* init_func_ptr_t)();
#define BOOST_FILESYSTEM_INITRETSUCCESS_V
#define BOOST_FILESYSTEM_INIT_FUNC void __cdecl
#else
typedef int (__cdecl* init_func_ptr_t)();
#define BOOST_FILESYSTEM_INITRETSUCCESS_V 0
#define BOOST_FILESYSTEM_INIT_FUNC int __cdecl
#endif
#else
typedef void (*init_func_ptr_t)();
#define BOOST_FILESYSTEM_INITRETSUCCESS_V
#define BOOST_FILESYSTEM_INIT_FUNC void
#endif
#if defined(__has_attribute)
#if __has_attribute(__used__)
#define BOOST_FILESYSTEM_ATTRIBUTE_RETAIN __attribute__ ((__used__))
#endif
#endif
#if !defined(BOOST_FILESYSTEM_ATTRIBUTE_RETAIN) && defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 402
#define BOOST_FILESYSTEM_ATTRIBUTE_RETAIN __attribute__ ((__used__))
#endif
#if !defined(BOOST_FILESYSTEM_ATTRIBUTE_RETAIN)
#define BOOST_FILESYSTEM_NO_ATTRIBUTE_RETAIN
#define BOOST_FILESYSTEM_ATTRIBUTE_RETAIN
#endif
#endif