Rename abi_corpus to corpus

* include/abg-corpus.h (abi_corpus): Change to corpus.

	* include/abg-hash.h: Tweaks.
	* include/abg-libxml-utils.h: Same.
This commit is contained in:
Benjamin Kosnik 2013-08-06 17:03:28 -07:00 committed by Dodji Seketeli
parent 9c7f025ae9
commit 9add67dfe5
3 changed files with 4 additions and 5 deletions

View File

@ -34,7 +34,7 @@ namespace abigail
/// bundled together as a corpus. A corpus is thus the Application
/// binary interface of a program, a library or just a set of modules
/// put together.
class abi_corpus
class corpus
{
public:
typedef std::string string;
@ -45,11 +45,11 @@ private:
string m_name;
translation_units m_members;
abi_corpus();
corpus();
public:
abi_corpus(const string&);
corpus(const string&);
void
add(const translation_unit_sptr);

View File

@ -30,7 +30,6 @@ namespace abigail
/// Namespace for hashing.
namespace hashing
{
/// Produce good hash value combining val1 and val2.
/// This is copied from tree.c in GCC.
std::size_t

View File

@ -25,7 +25,7 @@
namespace abigail
{
/// Namespace for xml.
/// Internal namespace for xml.
namespace xml
{