office-gobmx/registry
Noel Grandin ba233e87ef remove unnecessary parenthesis in return statements
found with
$ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;'

Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e
2015-02-23 09:26:58 +02:00
..
source remove unnecessary parenthesis in return statements 2015-02-23 09:26:58 +02:00
test
tools remove unnecessary parenthesis in return statements 2015-02-23 09:26:58 +02:00
workben remove unnecessary parenthesis in return statements 2015-02-23 09:26:58 +02:00
Executable_regcompare.mk
Executable_regmerge.mk
Executable_regview.mk
Library_reg.mk
Makefile
Module_registry.mk
README
StaticLibrary_registry_helper.mk

Registry reading, etc.

This provides tools for dealing with the legacy binary types database
format, still in use by extensions and the core code. While the actual
binary file format is implemented by the [[store]] code, the wrapper
that turns this into a type registry is implemented here.

While this code is primarily used in only two modes:

* linear write / concatenate
* random access read

The API unfortunately exposes a random-access write approach, which -
while ~unused needs before we can re-write this away from the store
backend.