mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 00:19:00 +08:00
CoffFileReader naming convention
This commit is contained in:
parent
72394491b2
commit
badecd4207
@ -3,7 +3,7 @@
|
||||
#include "filesystem_fs.h"
|
||||
#include <vector>
|
||||
|
||||
namespace vcpkg::COFFFileReader
|
||||
namespace vcpkg::CoffFileReader
|
||||
{
|
||||
struct DllInfo
|
||||
{
|
||||
|
@ -389,7 +389,7 @@ namespace vcpkg::PostBuildLint
|
||||
file.extension() == ".dll",
|
||||
"The file extension was not .dll: %s",
|
||||
file.generic_string());
|
||||
COFFFileReader::DllInfo info = COFFFileReader::read_dll(file);
|
||||
CoffFileReader::DllInfo info = CoffFileReader::read_dll(file);
|
||||
const std::string actual_architecture = get_actual_architecture(info.machine_type);
|
||||
|
||||
if (expected_architecture != actual_architecture)
|
||||
@ -418,7 +418,7 @@ namespace vcpkg::PostBuildLint
|
||||
file.extension() == ".lib",
|
||||
"The file extension was not .lib: %s",
|
||||
file.generic_string());
|
||||
COFFFileReader::LibInfo info = COFFFileReader::read_lib(file);
|
||||
CoffFileReader::LibInfo info = CoffFileReader::read_lib(file);
|
||||
|
||||
// This is zero for folly's debug library
|
||||
// TODO: Why?
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace vcpkg::COFFFileReader
|
||||
namespace vcpkg::CoffFileReader
|
||||
{
|
||||
template<class T>
|
||||
static T reinterpret_bytes(const char* data)
|
||||
|
Loading…
Reference in New Issue
Block a user