sc_fifo.hh (12841:22aa7ba47bf9) sc_fifo.hh (12853:e23d6f09069a)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 92 unchanged lines hidden (view full) ---

101 sc_fifo<T> &
102 operator = (const T &)
103 {
104 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
105 return *this;
106 }
107
108 virtual const sc_event &
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 92 unchanged lines hidden (view full) ---

101 sc_fifo<T> &
102 operator = (const T &)
103 {
104 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
105 return *this;
106 }
107
108 virtual const sc_event &
109 data_Written_event() const
109 data_written_event() const
110 {
111 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
112 return *(const sc_event *)nullptr;
113 }
114 virtual const sc_event &
115 data_read_event() const
116 {
117 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);

--- 54 unchanged lines hidden ---
110 {
111 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
112 return *(const sc_event *)nullptr;
113 }
114 virtual const sc_event &
115 data_read_event() const
116 {
117 sc_channel_warn_unimpl(__PRETTY_FUNCTION__);

--- 54 unchanged lines hidden ---