summaryrefslogtreecommitdiffstats
path: root/doxygen/examples/H5LT_examples.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-18 17:23:37 (GMT)
committerGitHub <noreply@github.com>2022-07-18 17:23:37 (GMT)
commitf6997681335f0b5fe2e8904f9108a71c5200fb2d (patch)
treeedc5aabdcae1035ce6e888bde550e15b1ad2e878 /doxygen/examples/H5LT_examples.c
parent7f9a5f0b6e58e9c04a18ea83ff0400f95294c6ac (diff)
downloadhdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.zip
hdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.tar.gz
hdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.tar.bz2
1.12 eliminate unnecessary errors in the error stack (#1880)
* Eliminate unnecessary error output * Fix merge typo * fix format * Fix object address to tokens * Fix conflict
Diffstat (limited to 'doxygen/examples/H5LT_examples.c')
-rw-r--r--doxygen/examples/H5LT_examples.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/doxygen/examples/H5LT_examples.c b/doxygen/examples/H5LT_examples.c
deleted file mode 100644
index 5ed4c29..0000000
--- a/doxygen/examples/H5LT_examples.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* -*- c-file-style: "stroustrup" -*- */
-
-//! <!-- [get_attribute_info] -->
-
-H5T_class_t type_class;
-size_t type_size;
-hsize_t dims[0];
-... status = H5LTget_attribute_info(file_id, "/", STRNAME, dims, &type_class, &type_size);
-if (type_class == H5T_STRING) {
- printf("Attribute is a string.\n");
- printf("String size: %i\n", type_size);
-
- //! <!-- [get_attribute_info] -->
-
- //! <!-- [enum] -->
-
- “H5T_ENUM
- {
- H5T_NATIVE_INT;
- “Bob” 0;
- “Elena” 1;
- “Quincey” 2;
- “Frank” 3;
- }
- ”
-
-//! <!-- [enum] -->