Skip to content

Commit

Permalink
Fix build with new Iconv path
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienfl-orc committed Feb 10, 2021
1 parent c413ed2 commit 319eb3b
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/OrcCommand/Text/Fmt/WolfPriority.h
Expand Up @@ -13,7 +13,7 @@
#include <system_error>

#include "Text/Format.h"
#include "Utils/Iconv.h"
#include "Text/Iconv.h"

template <>
struct fmt::formatter<Orc::Command::Wolf::Main::WolfPriority> : public fmt::formatter<std::string_view>
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Flags.cpp
Expand Up @@ -13,7 +13,7 @@

#include <fmt/core.h>

#include "Utils/Iconv.h"
#include "Text/Iconv.h"

namespace Orc {

Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/CryptoHashStreamAlgorithm.h
Expand Up @@ -12,7 +12,7 @@

#include <CryptoHashStreamAlgorithm.h>

#include "Utils/Iconv.h"
#include "Text/Iconv.h"

template <typename FormatContext>
auto fmt::formatter<Orc::CryptoHashStreamAlgorithm>::format(
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/FuzzyHashStreamAlgorithm.h
Expand Up @@ -12,7 +12,7 @@

#include <FuzzyHashStreamAlgorithm.h>

#include "Utils/Iconv.h"
#include "Text/Iconv.h"

template <typename FormatContext>
auto fmt::formatter<Orc::FuzzyHashStreamAlgorithm>::format(
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/Fwd/error_code.h
Expand Up @@ -12,7 +12,7 @@

#include <fmt/format.h>

#include "Utils/Fwd/Iconv.h"
#include "Text/Fwd/Iconv.h"

template <>
struct fmt::formatter<std::error_code> : public fmt::formatter<std::string_view>
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/Partition.h
Expand Up @@ -11,7 +11,7 @@
#include "Text/Fmt/Fwd/Partition.h"

#include "Text/Format.h"
#include "Utils/Iconv.h"
#include "Text/Iconv.h"
#include <Partition.h>

template <typename FormatContext>
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/PartitionFlags.h
Expand Up @@ -11,7 +11,7 @@
#include "Text/Fmt/Fwd/PartitionFlags.h"

#include "Text/Format.h"
#include "Utils/Iconv.h"
#include "Text/Iconv.h"
#include <PartitionFlags.h>

template <typename FormatContext>
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/PartitionType.h
Expand Up @@ -11,7 +11,7 @@
#include "Text/Fmt/Fwd/PartitionType.h"

#include "Text/Format.h"
#include "Utils/Iconv.h"
#include "Text/Iconv.h"
#include <PartitionType.h>

template <typename FormatContext>
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Fmt/error_code.h
Expand Up @@ -10,4 +10,4 @@

#include "Text/Fmt/Fwd/error_code.h"

#include "Utils/Iconv.h"
#include "Text/Iconv.h"
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Format.h
Expand Up @@ -16,7 +16,7 @@

#include <fmt/core.h>

#include "Utils/Iconv.h"
#include "Text/Iconv.h"
#include "Utils/TypeTraits.h"

namespace Orc {
Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Iconv.cpp
Expand Up @@ -8,7 +8,7 @@

#include "stdafx.h"

#include "Utils/Iconv.h"
#include "Text/Iconv.h"

#include <string_view>

Expand Down
2 changes: 1 addition & 1 deletion src/OrcLib/Text/Iconv.h
Expand Up @@ -7,7 +7,7 @@
//
#pragma once

#include "Utils/Fwd/Iconv.h"
#include "Text/Fwd/Iconv.h"

#include <string>
#include <system_error>
Expand Down

0 comments on commit 319eb3b

Please sign in to comment.