Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
hsutter committed Jul 8, 2024
1 parent 2633251 commit d7b9130
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion regression-tests/test-results/version
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

cppfront compiler v0.7.0 Build 9318:2141
cppfront compiler v0.7.0 Build 9707:1145
Copyright(c) Herb Sutter All rights reserved

SPDX-License-Identifier: CC-BY-NC-ND-4.0
Expand Down
2 changes: 1 addition & 1 deletion source/build.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"9318:2141"
"9707:1145"
8 changes: 4 additions & 4 deletions source/reflect.h
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ class value_member_info {
public: std::string name;
public: std::string type;
public: std::string value;
public: explicit value_member_info(auto const& name_, auto const& type_, auto const& value_);
public: value_member_info(auto const& name_, auto const& type_, auto const& value_);

#line 998 "reflect.h2"
};
Expand Down Expand Up @@ -1645,9 +1645,9 @@ auto cpp2_struct(meta::type_declaration& t) -> void
}

value_member_info::value_member_info(auto const& name_, auto const& type_, auto const& value_)
: name{ name_ }
, type{ type_ }
, value{ value_ }{}
: name{ name_ }
, type{ type_ }
, value{ value_ }{}

#line 1000 "reflect.h2"
auto basic_enum(
Expand Down

0 comments on commit d7b9130

Please sign in to comment.