-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve static constexpr class attribute (#351)
* fix `GetVariableOffset` for static constexpr class attribute by explicitly initializing constexpr with `Sema::InstantiateVariableDefinition` * brew remove unxip on OSX-ARM exclusively fix for the osx dependency issue * Update lib/Interpreter/CppInterOp.cpp --------- Co-authored-by: Vassil Vassilev <[email protected]>
- Loading branch information
1 parent
826be78
commit e4adda3
Showing
3 changed files
with
122 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -310,7 +310,10 @@ jobs: | |
run: | | ||
brew update | ||
brew remove [email protected] | ||
brew remove unxip | ||
export ARCHITECHURE=$(uname -m) | ||
if [[ "$ARCHITECHURE" != "x86_64" ]]; then | ||
brew remove unxip | ||
fi | ||
# workaround for https://github.com/actions/setup-python/issues/577 | ||
for pkg in $(brew list | grep '^python@'); do | ||
brew unlink "$pkg" | ||
|
@@ -764,10 +767,11 @@ jobs: | |
run: | | ||
brew update | ||
brew remove [email protected] | ||
brew remove unxip | ||
export ARCHITECHURE=$(uname -m) | ||
if [[ "$ARCHITECHURE" == "x86_64" ]]; then | ||
brew remove swiftlint | ||
else | ||
brew remove unxip | ||
fi | ||
# workaround for https://github.com/actions/setup-python/issues/577 | ||
for pkg in $(brew list | grep '^python@'); do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters