mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-05 20:50:18 +02:00
refactor: Rename subprocess.hpp
to follow our header name conventions
This commit is contained in:
parent
2cecbbb986
commit
d8e4ba4d05
@ -320,7 +320,7 @@ BITCOIN_CORE_H = \
|
||||
util/sock.h \
|
||||
util/spanparsing.h \
|
||||
util/string.h \
|
||||
util/subprocess.hpp \
|
||||
util/subprocess.h \
|
||||
util/syserror.h \
|
||||
util/task_runner.h \
|
||||
util/thread.h \
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include <univalue.h>
|
||||
|
||||
#ifdef ENABLE_EXTERNAL_SIGNER
|
||||
#include <util/subprocess.hpp>
|
||||
#include <util/subprocess.h>
|
||||
#endif // ENABLE_EXTERNAL_SIGNER
|
||||
|
||||
UniValue RunCommandParseJSON(const std::string& str_command, const std::string& str_std_in)
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <univalue.h>
|
||||
|
||||
#ifdef ENABLE_EXTERNAL_SIGNER
|
||||
#include <util/subprocess.hpp>
|
||||
#include <util/subprocess.h>
|
||||
#endif // ENABLE_EXTERNAL_SIGNER
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
@ -33,8 +33,8 @@ Documentation for C++ subprocessing library.
|
||||
@version 1.0.0
|
||||
*/
|
||||
|
||||
#ifndef SUBPROCESS_HPP
|
||||
#define SUBPROCESS_HPP
|
||||
#ifndef BITCOIN_UTIL_SUBPROCESS_H
|
||||
#define BITCOIN_UTIL_SUBPROCESS_H
|
||||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
@ -1609,4 +1609,4 @@ namespace detail {
|
||||
|
||||
}
|
||||
|
||||
#endif // SUBPROCESS_HPP
|
||||
#endif // BITCOIN_UTIL_SUBPROCESS_H
|
Loading…
x
Reference in New Issue
Block a user