summaryrefslogtreecommitdiffstats
path: root/ue4/mycpu/cdatn.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue4/mycpu/cdatn.h')
-rw-r--r--ue4/mycpu/cdatn.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ue4/mycpu/cdatn.h b/ue4/mycpu/cdatn.h
index 32d8d7b..3d21369 100644
--- a/ue4/mycpu/cdatn.h
+++ b/ue4/mycpu/cdatn.h
@@ -139,7 +139,7 @@ class CDatN
139 /** 139 /**
140 * @method operator= 140 * @method operator=
141 * @brief implementation of operator = 141 * @brief implementation of operator =
142 * @param x reference to int 142 * @param newval reference to int
143 * @return refecence to int 143 * @return refecence to int
144 * @globalvars none 144 * @globalvars none
145 * @exception none 145 * @exception none
@@ -373,7 +373,9 @@ class CDatN
373 } 373 }
374 374
375 /* members */ 375 /* members */
376 /** internal value of datatype */
376 int m_value; 377 int m_value;
378 /** width of datatype */
377 unsigned m_width; 379 unsigned m_width;
378}; 380};
379 381