mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Cleanups
This commit is contained in:
parent
3ae447420e
commit
69a195fc5c
@ -35,8 +35,6 @@
|
||||
#endif
|
||||
#include "../../verbosity.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
static void get_include_file(
|
||||
const char *line, char *include_file, size_t len)
|
||||
{
|
||||
@ -206,13 +204,13 @@ error:
|
||||
return false;
|
||||
}
|
||||
|
||||
static string build_stage_source(const struct string_list *lines, const char *stage)
|
||||
static std::string build_stage_source(const struct string_list *lines, const char *stage)
|
||||
{
|
||||
/* Note: since we have to return a std::string anyway,
|
||||
* there is nothing to be gained from trying to replace
|
||||
* this ostringstream with a C-based alternative
|
||||
* (would require a rewrite of deps/glslang/glslang.cpp) */
|
||||
ostringstream str;
|
||||
std::ostringstream str;
|
||||
bool active = true;
|
||||
size_t i;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user