This repository was archived by the owner on Mar 4, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ turn on optimization (-O2). With both clang and gcc, dispatching a call to a
186186method with one virtual argument takes 15-30% more time than calling the
187187equivalent virtual member function (unless the call goes through a virtual base,
188188which requires a dynamic cast). It does not involve branching or looping, only a
189- few memory reads (which the CPU can be parallelize), a multiplication, a bit
189+ few memory reads (which the CPU can parallelize), a multiplication, a bit
190190shift, a final memory read, then an indirect call. If the body of the method
191191does any amount of work, the difference is unnoticeable.
192192
@@ -199,7 +199,7 @@ instructions and two memory reads.
199199## Installation
200200
201201YOMM2 is available on both major package managers. This is the easiest way of
202- integrating it in your project, along with its dependencies. See [the vcpkg
202+ integrating it into your project, along with its dependencies. See [the vcpkg
203203example](examples/vcpkg) and [the Conan2 example](examples/conan).
204204
205205YOMM2 can also be built and installed from the sources, using straight `cmake`.
You can’t perform that action at this time.
0 commit comments