adding std namespace to all libstd provided primitive types

This commit is contained in:
2024-02-25 08:04:44 +01:00
parent 828024e131
commit 3624caf519
61 changed files with 193 additions and 189 deletions

View File

@@ -6,7 +6,7 @@
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/10 11:59:57 by maldavid #+# #+# */
/* Updated: 2024/01/18 08:02:31 by maldavid ### ########.fr */
/* Updated: 2024/02/24 21:38:11 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
@@ -16,6 +16,7 @@
#include <renderer/renderer.h>
#include <algorithm>
#include <core/profiler.h>
#include <iostream>
namespace mlx
{
@@ -49,6 +50,7 @@ namespace mlx
core::error::report(e_kind::warning, "Text Library : trying to remove a text with an unkown or invalid ID '%d'", id);
return;
}
std::cout << _cache[id]->getText() << std::endl;
_cache[id]->destroy();
_invalid_ids.push_back(id);
}