Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename device package to libhal- #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 0 additions & 57 deletions .github/workflows/update_name.yml

This file was deleted.

4 changes: 2 additions & 2 deletions include/navigator/navigator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#pragma once

namespace hal::navigator { // NOLINT
class navigator // NOLINT
namespace hal::navigator {
class navigator
{};
} // namespace hal::navigator
2 changes: 1 addition & 1 deletion src/navigator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

#include "navigator/navigator.hpp"

namespace hal::navigator { // NOLINT
namespace hal::navigator {
} // namespace hal::navigator
4 changes: 2 additions & 2 deletions tests/__device__.test.cpp → tests/.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

#include <boost/ut.hpp>

namespace hal::navigator { // NOLINT
void navigator_test() // NOLINT
namespace hal::navigator {
void navigator_test()
{
using namespace boost::ut;
using namespace std::literals;
Expand Down
4 changes: 2 additions & 2 deletions tests/main.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

namespace hal::navigator { // NOLINT
extern void navigator_test(); // NOLINT
namespace hal::navigator {
extern void navigator_test();
} // namespace hal::navigator

int main()
Expand Down