File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/include/llvm/Support Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 10
10
// some problems with std::errc that can be avoided by using our own
11
11
// enumeration:
12
12
//
13
- // * std::errc is a namespace in some implementations. That meas that ADL
13
+ // * std::errc is a namespace in some implementations. That means that ADL
14
14
// doesn't work and it is sometimes necessary to write std::make_error_code
15
15
// or in templates:
16
16
// using std::make_error_code;
22
22
// the intersection of all the ones we support.
23
23
//
24
24
// * std::errc is just marked with is_error_condition_enum. This means that
25
- // common patters like AnErrorCode == errc::no_such_file_or_directory take
25
+ // common patterns like AnErrorCode == errc::no_such_file_or_directory take
26
26
// 4 virtual calls instead of two comparisons.
27
27
// ===----------------------------------------------------------------------===//
28
28
You can’t perform that action at this time.
0 commit comments