Try to avoid -std=c++0x compilation flag

This commit is contained in:
Serge Lamikhov-Center 2012-03-09 22:42:53 +02:00
parent 83f8dbc7ce
commit 185d87c138
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
<h3>Links</h3>
<ul class="menu">
<li><a href="http://sourceforge.net/projects/elfio/files/">Download</a> the source</li><br/>
<li>Read the <a href="tutorial.pdf">User's Guide</a></li><br/>
<li>Read the <a href="elfio.pdf">User's Guide</a></li><br/>
<li>Read the <a href="html/index.html">API documentation</a></li><br/>
<li>Visit the
<a href="http://sourceforge.net/projects/elfio/">SourceForge project page</a></li><br/>

View File

@ -25,7 +25,7 @@ THE SOFTWARE.
#ifndef ELFIO_NO_OWN_TYPES
#if !defined(ELFIO_NO_CSTDINT) && !defined(ELFIO_NO_INTTYPES)
#include <cstdint>
#include <stdint.h>
#else
typedef unsigned char uint8_t;
typedef signed char int8_t;