Skip to content

Commit 44ac7ca

Browse files
author
Mingxin Wang
committed
Adjust
1 parent 4095676 commit 44ac7ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/bvt-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cat <<EOF > benchmarking-report.md
2424
# Benchmarking Report
2525
26-
- Generated for: [C++ "Proxy" library](https://github.com/ngcpp/proxy)
26+
- Generated for: [C++ Proxy library](https://github.com/ngcpp/proxy)
2727
- Commit ID: [${{ github.sha }}](https://github.com/ngcpp/proxy/commit/${{ github.sha }})
2828
- Generated at: $(date -u +"%Y-%m-%dT%H:%M:%SZ")
2929

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If so, this library is for you.
1616

1717
"Proxy" is a modern C++ library that helps you use polymorphism (a way to use different types of objects interchangeably) without needing inheritance.
1818

19-
"Proxy" was created by Microsoft engineers and incubated at Microsoft from 2022 to Feb 2026, and has been used in the Windows operating system since 2022. It is now maintained by the Next Gen C++ Foundation (ngcpp). For many years, using inheritance was the main way to achieve polymorphism in C++. However, new programming languages like [Rust](https://doc.rust-lang.org/book/ch10-02-traits.html) offer better ways to do this. We have improved our understanding of object-oriented programming and decided to use *pointers* in C++ as the foundation for "Proxy". Specifically, the "Proxy" library is designed to be:
19+
"Proxy" was created by Microsoft engineers and incubated at Microsoft from 2018 to 2026, and has been used in the Windows operating system since 2022. It is now maintained by the Next Gen C++ Foundation (ngcpp). For many years, using inheritance was the main way to achieve polymorphism in C++. However, new programming languages like [Rust](https://doc.rust-lang.org/book/ch10-02-traits.html) offer better ways to do this. We have improved our understanding of object-oriented programming and decided to use *pointers* in C++ as the foundation for "Proxy". Specifically, the "Proxy" library is designed to be:
2020

2121
- **Portable**: "Proxy" was implemented as a header-only library in standard C++20. It can be used on any platform while the compiler supports C++20. The majority of the library is [freestanding](https://en.cppreference.com/w/cpp/freestanding), making it feasible for embedded engineering or kernel design of an operating system.
2222
- **Non-intrusive**: An implementation type is no longer required to inherit from an abstract binding.

0 commit comments

Comments
 (0)