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
<script type="text/javascript">
// Redirect to new doxygen location if accessing from an older url
if (window.location.pathname.startsWith('/docs/')) {
document.getElementById('block-404').classList.toggle('hidden')
document.getElementById('block-redirect').classList.toggle('hidden')
var url = '/doc/doxygen/' + window.location.pathname.substring(6);
var link = document.getElementById('redirect-value')
link.textContent = url
link.href = url
window.location.pathname = url
}
</script>