demangle.cpp revision 2acb8cfac9fe3c5f11618acc5172a1cb4fe00e81
/*
* Inkscape::Debug::demangle - demangle C++ symbol names
*
* Authors:
* MenTaLguY <mental@rydia.net>
*
* Copyright (C) 2006 MenTaLguY
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <stdio.h>
#include <string.h>
#include <map>
#include "debug/demangle.h"
#include "gc-alloc.h"
namespace Inkscape {
namespace Debug {
namespace {
char const *demangle_helper(char const *name) {
char buffer[1024];
char const *result;
}
} else {
}
return result;
}
struct string_less_than {
bool operator()(char const *a, char const *b) {
return ( strcmp(a, b) < 0 );
}
};
}
char const *result;
} else {
}
}
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :