You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
632 B
18 lines
632 B
8 years ago
|
/*
|
||
|
* Copyright (c) 2017 - present Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
// locale_conv in libstdc++ is including 'bits/unique_ptr.h' via
|
||
|
// #include "unique_ptr.h". Infer can't redirect those includes
|
||
|
// so instead include unique_ptr via our header first. Then, it
|
||
|
// won't be included again in 'bits/locale_conv.h'
|
||
|
#include <bits/unique_ptr.h>
|
||
|
|
||
|
#include_next <bits/locale_conv.h>
|