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

fix: Rename TypeInfo.hpp to NitroTypeInfo.hpp #498

Merged
merged 3 commits into from
Jan 15, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct JSIConverter;
#include "CountTrailingOptionals.hpp"
#include "JSIConverter.hpp"
#include "NitroDefines.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <exception>
#include <functional>
#include <jsi/jsi.h>
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-nitro-modules/cpp/core/Promise.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

#include "AssertPromiseState.hpp"
#include "NitroDefines.hpp"
#include "NitroTypeInfo.hpp"
#include "ThreadPool.hpp"
#include "TypeInfo.hpp"
#include <exception>
#include <future>
#include <jsi/jsi.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct JSIConverter;

#include "JSIConverter.hpp"

#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <exception>
#include <jsi/jsi.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include "IsSharedPtrTo.hpp"
#include "NitroDefines.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <jsi/jsi.h>
#include <type_traits>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HybridObject;

#include "IsSharedPtrTo.hpp"
#include "NitroDefines.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <jsi/jsi.h>
#include <type_traits>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct JSIConverter;

#include "JSIConverter.hpp"

#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <jsi/jsi.h>
#include <memory>
#include <tuple>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct JSIConverter;
#include "JSIConverter.hpp"

#include "AnyMap.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <jsi/jsi.h>
#include <memory>
#include <variant>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "HybridObjectPrototype.hpp"
#include "NitroDefines.hpp"
#include "NitroLogger.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"

namespace margelo::nitro {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ template <typename TResult>
class Promise;
} // namespace margelo::nitro

#include "NitroTypeInfo.hpp"
#include "Promise.hpp"
#include "TypeInfo.hpp"
#include <exception>
#include <string>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// TypeInfo.hpp
// NitroTypeInfo.hpp
// Nitro
//
// Created by Marc Rousavy on 17.07.24.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class HybridObject;

#include "HybridObject.hpp"
#include "NitroLogger.hpp"
#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <memory>

namespace margelo::nitro {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#pragma once

#include "TypeInfo.hpp"
#include "NitroTypeInfo.hpp"
#include <exception>
#include <string>

Expand Down
Loading