Skip to content

Commit

Permalink
fix(ios): remove the semicolon after namespace syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ozonelmy authored and zealotchen0 committed Jul 3, 2023
1 parent 6e72a07 commit a802e22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pod_spec_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ on:
- 'devtools/devtools-backend/**'

jobs:
ios_build_tests:
pod_spec_lint:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Pod_Spec_Lint
- name: Pod Spec Lint
run: |
pod spec lint hippy.podspec --allow-warnings --use-libraries --verbose --skip-import-validation
2 changes: 1 addition & 1 deletion .github/workflows/pod_spec_lint_bypass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
- 'devtools/devtools-backend/**'

jobs:
ios_build_tests:
pod_spec_lint:
runs-on: macos-latest
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions driver/js/include/driver/vm/js_vm.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

namespace hippy {
#ifdef ENABLE_INSPECTOR
namespace devtools{
namespace devtools {
class DevtoolsDataSource;
};
}
#endif
inline namespace driver {
inline namespace vm {
Expand Down

0 comments on commit a802e22

Please sign in to comment.