You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Normally this file is only compiled with slice2cpp, so we never noticed.
But it's completely broken with a debug build of slice2py on Windows (and MacOS, confirmed by externl).
After cutting out parts of the file and seeing what still triggers the abort, the issue is caused by malformed @param tags:
module IceGrid
{
interface Adapter
{
/// @param The direct proxy.
void setDirectProxy(Object* proxy);
}
}
It seems we didn't write @param proxy like we should of. But, this also shouldn't cause the compiler to crash either.
The text was updated successfully, but these errors were encountered:
InsertCreativityHere
changed the title
Assertion Hit in slice2py When Compiling cpp/src/IceGrid/Internal.ice
Crash with slice2py When Compiling cpp/src/IceGrid/Internal.iceJan 13, 2025
Normally this file is only compiled with
slice2cpp
, so we never noticed.But it's completely broken with a debug build of
slice2py
on Windows (and MacOS, confirmed by externl).After cutting out parts of the file and seeing what still triggers the abort, the issue is caused by malformed
@param
tags:It seems we didn't write
@param proxy
like we should of. But, this also shouldn't cause the compiler to crash either.The text was updated successfully, but these errors were encountered: