Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
m417z
kdlibcpp
Commits
f2f953e0
Commit
f2f953e0
authored
Dec 15, 2019
by
ussrhero
Browse files
getTypeName method for .net modules should raise TypeException
parent
51a0e35b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
kdlib/source/net/netmodule.cpp
kdlib/source/net/netmodule.cpp
+4
-3
No files found.
kdlib/source/net/netmodule.cpp
View file @
f2f953e0
...
...
@@ -154,11 +154,12 @@ MEMOFFSET_64 NetModule::getImageBase(ICorDebugModule* module)
TypeInfoPtr
NetModule
::
getTypeByName
(
const
std
::
wstring
&
typeName
)
{
initCorDebugModule
();
//
initCorDebugModule();
NOT_IMPLEMENTED
(
);
throw
TypeException
(
typeName
,
L"not found"
);
// return TypeInfoPtr( new NetTypeClass(m_metaDataProvider, typeName) );
//auto typeToken = m_metaDataProvider->getTypeTokenByName(typeName);
//return m_metaDataProvider->getTypeByName(type);
}
///////////////////////////////////////////////////////////////////////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment