Skip to content
Navigation Menu
Toggle navigation
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Spark
Build and deploy intelligent apps
GitHub Models
Manage and compare prompts
MCP Registry
New
Discover and integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search or jump to...
Search code, repositories, users, issues, pull requests...
Search syntax tips
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Sign in
Sign up
Appearance settings
Resetting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
ntrel
/
cppfront
Public
forked from
hsutter/cppfront
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Wiki
Security
Uh oh!
There was an error while loading.
Please reload this page
.
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security
Insights
Commits
Branch selector
op-eq-params
User selector
All users
Datepicker
All time
Commit History
Commits on Apr 9, 2023
Fix nullary operator= segfault
Show description for a26f534
ntrel
committed
a26f534
Copy full SHA for a26f534
Commits on Apr 3, 2023
Enable UFCS in initializers of global variables, closes #314
Show description for 827ed79
hsutter
committed
827ed79
Copy full SHA for 827ed79
Commits on Apr 2, 2023
Don't move from a non-last use in a branch condition, closes #311
hsutter
committed
5cc3326
Copy full SHA for 5cc3326
Require namespace-scope objects to have a concrete type, closes #315
hsutter
committed
cd961d1
Copy full SHA for cd961d1
Better fix for #291, closes #312
hsutter
committed
f608b78
Copy full SHA for f608b78
Added type and namespace alias declarations, closes #273
Show description for 63efa6e
hsutter
committed
63efa6e
Copy full SHA for 63efa6e
Commits on Apr 1, 2023
Fix default member initialization in assignment, closes #290
Show description for feff640
hsutter
committed
feff640
Copy full SHA for feff640
Fix ICE in case of `operator=` with `out` parameter and no explicit member initializers
hsutter
committed
a75816b
Copy full SHA for a75816b
Preserve paren state across `print_to_string` call, addresses #256
hsutter
committed
923e0f3
Copy full SHA for 923e0f3
Disallow forward return of `in` or `move` parameter, addresses #248 comment
Show description for bad1903
hsutter
committed
bad1903
Copy full SHA for bad1903
Emit access-specifiers only in lowering phase 1
hsutter
committed
937383f
Copy full SHA for 937383f
Add order-independent type definitions
Show description for 45fb75e
hsutter
committed
45fb75e
Copy full SHA for 45fb75e
Commits on Mar 28, 2023
Fix string literal parsing when \\ is on the end (#303)
Show description for b370ab8
filipsajdak
authored
b370ab8
Copy full SHA for b370ab8
Remove 1adjust_remaining_token_columns_on_this_line_visitor1
Show description for 396e339
hsutter
committed
396e339
Copy full SHA for 396e339
Output formatting improvements - remove a lot of the extra-space injection
hsutter
committed
38d4947
Copy full SHA for 38d4947
Commits on Mar 26, 2023
Updated MSVC regression test results for last merge
hsutter
committed
aa70d09
Copy full SHA for aa70d09
Fix string literals with prefix, closes #298 (#299)
Show description for fa4b888
filipsajdak
authored
fa4b888
Copy full SHA for fa4b888
Improved the GCC 10.x bug note
hsutter
committed
5a0d77f
Copy full SHA for 5a0d77f
Add note about why we're emitting requires-clauses on the function body because of GCC 10.x
hsutter
committed
c31320d
Copy full SHA for c31320d
Add basic _requires-clause_ support
Show description for 3e5a83a
hsutter
committed
3e5a83a
Copy full SHA for 3e5a83a
Fix support for function multiple forward arguments - close #279 (#293)
Show description for e606505
filipsajdak
authored
e606505
Copy full SHA for e606505
Fix `is_within_function_body` bug that was missing the final function body
hsutter
committed
2639de7
Copy full SHA for 2639de7
Commits on Mar 25, 2023
Cleanup and simplification of comment and #line emission logic
Show description for 0fa4217
hsutter
committed
0fa4217
Copy full SHA for 0fa4217
Start refining comment handling preparatory to splitting decl/defn section comments
hsutter
committed
3a87189
Copy full SHA for 3a87189
Commits on Mar 23, 2023
Don't emit general/vague errors if we already diagnosed something more specific
Show description for fbf55ad
hsutter
committed
fbf55ad
Copy full SHA for fbf55ad
Get rid of a few C-style casts that crept in, be `-Wold-style-cast` clean, closes #287
hsutter
committed
0d1544b
Copy full SHA for 0d1544b
Add cpp2 raw string literals support with interpolation (#251)
Show description for fda45aa
filipsajdak
authored
fda45aa
Copy full SHA for fda45aa
On second thought, just use a `deque` like everywhere else
Show description for c4bc996
hsutter
committed
c4bc996
Copy full SHA for c4bc996
Commits on Mar 22, 2023
Compile warning-clean again
hsutter
committed
aee65d7
Copy full SHA for aee65d7
Fix code gen for `operator=` with single-statement body
Show description for 82e8707
hsutter
committed
82e8707
Copy full SHA for 82e8707
Require that floating-point literals write a digit after `.`, enables UFCS on numeric literals
Show description for 51851c8
hsutter
committed
51851c8
Copy full SHA for 51851c8
Fix generation when `operator=` nests a lambda, and work around Clang and MSVC bug, addresses #281
Show description for f9ca050
hsutter
committed
f9ca050
Copy full SHA for f9ca050
Commits on Mar 20, 2023
Support unnamed namespaces, closes #283
Show description for de25e0e
hsutter
committed
de25e0e
Copy full SHA for de25e0e
Don't emit [[nodiscard]] for explicit `-> void`, closes #278
hsutter
committed
8196995
Copy full SHA for 8196995
Add `operator=` generation
Show description for a89af8f
hsutter
committed
a89af8f
Copy full SHA for a89af8f
Pagination
Previous
Next
You can’t perform that action at this time.