summaryrefslogtreecommitdiffstats
path: root/import/hwpf
diff options
context:
space:
mode:
authorBrian Silver <bsilver@us.ibm.com>2015-02-27 13:49:28 -0600
committerJoshua Hunsberger <jahunsbe@us.ibm.com>2017-10-23 15:50:52 -0500
commit9d95b4a77423ea74222f3fadbbf0c2a6ca5491a9 (patch)
treee6e8a798013cef3f1c6c2912f87ca4015b58a84f /import/hwpf
parenta6df645c520891ca8adfed7c0e7ef056a49a5133 (diff)
downloadtalos-hcode-9d95b4a77423ea74222f3fadbbf0c2a6ca5491a9.tar.gz
talos-hcode-9d95b4a77423ea74222f3fadbbf0c2a6ca5491a9.zip
fapi2 bug fixes and cleanup
Add assignment/equality operators to targets Add fapi2::buffer<T>::pointer() Fix fapi2::buffer<T> operator documentation Add inline to hw_access, error_info functions Remove error_info interator typdefs in favor of auto Change-Id: I8931215862c55188747a7de78f9344c0ca7ab517 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/16096 Reviewed-by: Matt K. Light <mklight@us.ibm.com> Reviewed-by: Thi N. Tran <thi@us.ibm.com> Reviewed-by: Brian Silver <bsilver@us.ibm.com> Tested-by: Brian Silver <bsilver@us.ibm.com>
Diffstat (limited to 'import/hwpf')
-rw-r--r--import/hwpf/fapi2/include/buffer.H13
1 files changed, 7 insertions, 6 deletions
diff --git a/import/hwpf/fapi2/include/buffer.H b/import/hwpf/fapi2/include/buffer.H
index 3082e41f..848f032a 100644
--- a/import/hwpf/fapi2/include/buffer.H
+++ b/import/hwpf/fapi2/include/buffer.H
@@ -256,25 +256,26 @@ namespace fapi2
#endif
///
- /// @brief operator==()
+ /// @brief operator~()
///
#ifdef DOXYGEN
- buffer<T>& operator==(const T& rhs) const;
+ buffer<T>& operator~(const T& rhs) const;
#endif
///
- /// @brief operator!=()
+ /// @brief operator==()
///
#ifdef DOXYGEN
- bool operator!=(const T& rhs) const;
+ bool operator==(const T& rhs) const;
#endif
///
- /// @brief operator~()
+ /// @brief operator!=()
///
#ifdef DOXYGEN
- bool operator~(const T& rhs) const;
+ bool operator!=(const T& rhs) const;
#endif
+
///
/// @brief Copy part of a OT into the DataBuffer
/// @tparam TS Start bit to insert into (target start)
OpenPOWER on IntegriCloud