소스 검색

Fix unresolved symbol issue introduced by recent OS X fixes.

pull/1/head
Sam Hocevar 4 년 전
부모
커밋
dead6fe3bf
1개의 변경된 파일4개의 추가작업 그리고 6개의 파일을 삭제
  1. +4
    -6
      include/lol/private/base/string.h

+ 4
- 6
include/lol/private/base/string.h 파일 보기

@@ -175,19 +175,17 @@ std::basic_string<T> vformat(char const *fmt, va_list ap)
return ret;
}

// XXX: we cheat by setting the argument time to char instead of T, because
// I found no other way to use the printf attribute.
template<typename T = char>
std::basic_string<T> format(T const *fmt, ...)
std::basic_string<T> format(char const *fmt, ...) lol_attr_printf_format(1, 2)
{
va_list ap;
va_start(ap, fmt);
std::string ret = vformat(fmt, ap);
std::basic_string<T> ret = vformat(fmt, ap);
va_end(ap);
return ret;
}

// Specialize for char so that we can declare the printf format attribute
template<>
std::basic_string<char> format(char const *fmt, ...) lol_attr_printf_format(1, 2);

} // namespace lol


불러오는 중...
취소
저장