Review fixes.
This commit is contained in:
parent
f874a19948
commit
b152d5d44f
4 changed files with 16 additions and 4 deletions
|
@ -20,7 +20,7 @@ struct Repeater
|
|||
{
|
||||
++m_calls;
|
||||
if (wrapper() == ControlFlow::Break)
|
||||
break;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
|
||||
namespace base
|
||||
|
@ -15,8 +16,9 @@ enum class ControlFlow
|
|||
// To avoid excessive calls, |fn| may signal the end of execution via its return value,
|
||||
// which should then be checked by the wrapper's user.
|
||||
template <typename Fn>
|
||||
struct ControlFlowWrapper
|
||||
class ControlFlowWrapper
|
||||
{
|
||||
public:
|
||||
template <typename Gn>
|
||||
explicit ControlFlowWrapper(Gn && gn) : m_fn(std::forward<Gn>(gn))
|
||||
{
|
||||
|
@ -40,6 +42,7 @@ struct ControlFlowWrapper
|
|||
return ControlFlow::Continue;
|
||||
}
|
||||
|
||||
private:
|
||||
Fn m_fn;
|
||||
};
|
||||
} // namespace base
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
|
||||
#include "3party/utfcpp/source/utf8.h"
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace
|
||||
{
|
||||
struct lang_string
|
||||
|
|
|
@ -8,8 +8,10 @@
|
|||
#include "base/control_flow.hpp"
|
||||
|
||||
#include <array>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
|
||||
namespace utils
|
||||
{
|
||||
|
@ -88,6 +90,7 @@ public:
|
|||
AddString(l, utf8s);
|
||||
}
|
||||
|
||||
// Calls |fn| for each pair of |lang| and |utf8s| stored in this multilang string.
|
||||
template <typename Fn>
|
||||
void ForEach(Fn && fn) const
|
||||
{
|
||||
|
@ -98,7 +101,7 @@ public:
|
|||
{
|
||||
size_t const next = GetNextIndex(i);
|
||||
if (wrapper((m_s[i] & 0x3F), m_s.substr(i + 1, next - i - 1)) == base::ControlFlow::Break)
|
||||
break;
|
||||
return;
|
||||
i = next;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue