CoffFileReader naming convention

This commit is contained in:
Alexander Karatarakis 2017-08-31 18:03:54 -07:00
parent 72394491b2
commit badecd4207
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
#include "filesystem_fs.h"
#include <vector>
namespace vcpkg::COFFFileReader
namespace vcpkg::CoffFileReader
{
struct DllInfo
{

View File

@ -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?

View File

@ -5,7 +5,7 @@
using namespace std;
namespace vcpkg::COFFFileReader
namespace vcpkg::CoffFileReader
{
template<class T>
static T reinterpret_bytes(const char* data)