Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ turn on optimization (-O2). With both clang and gcc, dispatching a call to a
method with one virtual argument takes 15-30% more time than calling the
equivalent virtual member function (unless the call goes through a virtual base,
which requires a dynamic cast). It does not involve branching or looping, only a
few memory reads (which the CPU can be parallelize), a multiplication, a bit
few memory reads (which the CPU can parallelize), a multiplication, a bit
shift, a final memory read, then an indirect call. If the body of the method
does any amount of work, the difference is unnoticeable.

Expand All @@ -199,7 +199,7 @@ instructions and two memory reads.
## Installation

YOMM2 is available on both major package managers. This is the easiest way of
integrating it in your project, along with its dependencies. See [the vcpkg
integrating it into your project, along with its dependencies. See [the vcpkg
example](examples/vcpkg) and [the Conan2 example](examples/conan).

YOMM2 can also be built and installed from the sources, using straight `cmake`.
Expand Down