473,320 Members | 1,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

strange compiler message

Hello,

I wonder whether anyone has ever come across
the following g++ compiler error message. I
don't recall ever seeing it before. I solved
my problem but I am still not sure about
what this message is all about. Any
ideas?

error: invalid initialization of non-const reference of
type 'Foo&' from a temporary of type 'Foo'

Thanks,

Neil
Jul 22 '05 #1
13 1831

You need to post the code to know exactly why, but I'd
guess that you are passing a temporary object like Foo(),
as a parameter to a function which is a non const parameter,

ie, void foo( Foo& f ) instead of void foo( const Foo& f )

and you are doing f( Foo() ).

The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.

dave

"Neil Zanella" <nz******@cs.mun.ca> wrote in message
news:b6**************************@posting.google.c om...
Hello,

I wonder whether anyone has ever come across
the following g++ compiler error message. I
don't recall ever seeing it before. I solved
my problem but I am still not sure about
what this message is all about. Any
ideas?

error: invalid initialization of non-const reference of
type 'Foo&' from a temporary of type 'Foo'

Thanks,

Neil

Jul 22 '05 #2
Dave Townsend wrote:

You need to post the code to know exactly why, but I'd
guess that you are passing a temporary object like Foo(),
as a parameter to a function which is a non const parameter,

ie, void foo( Foo& f ) instead of void foo( const Foo& f )

and you are doing f( Foo() ).

The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.


Nitpicking:

You meant it doesn't allow a non-constant reference to be bound
to a temporary.

(It does allow you to modify non-const temporary objects of user-defined
types, since you can call member functions on such objects).

Denis
Jul 22 '05 #3
"Denis Remezov" <fi***************@yahoo.removethis.ca> wrote...
Dave Townsend wrote:

You need to post the code to know exactly why, but I'd
guess that you are passing a temporary object like Foo(),
as a parameter to a function which is a non const parameter,

ie, void foo( Foo& f ) instead of void foo( const Foo& f )

and you are doing f( Foo() ).

The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.

Nitpicking:

You meant it doesn't allow a non-constant reference to be bound
to a temporary.

(It does allow you to modify non-const temporary objects of user-defined
types, since you can call member functions on such objects).


Nitpicking:

(It does allow you to modify temporary objects of user-defined types
since you can call non-const member function on such objects).

Denis


Victor
Jul 22 '05 #4
"Dave Townsend" <da********@comcast.net> wrote in message
The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.


Interesting, but I see no reason why the standard should forbid such
statements. Could you please elaborate on why that would be? Both
variables in the main() given below have automatic storage duration.
The only difference that I can see is that one has a name and the
other does not. So what do you mean by "temporary".
#include <iostream>

class Foo {
public:
Foo(int x): x(x) { }
void foo() const { std::cout << x << std::endl; }
private:
int x;
};

void foo(Foo &foo) { foo.foo(); }

void bar(const Foo &foo) { foo.foo(); }

int main() {

// disallowed: (why???)

foo(Foo(8)); // generates compile time error message

// allowed:

Foo x(8);
foo(x);

// syntax error: I guess the standard does not allow
// variables to be defined inside the arguments of
// function calls with a name, which makes sense,
// since where would that name be used, its scope
// being limited...
// foo(Foo y(88)); // syntax error

}
Jul 22 '05 #5
"Neil Zanella" <nz******@cs.mun.ca> wrote...
"Dave Townsend" <da********@comcast.net> wrote in message
The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.

I don't know why the compiler was emitting the message, but it is
a fact that temporary objects are _not_ constant and you _may_ modify
them at will (by calling member functions that are non-const). The
Standard never disallowed that, IIRC.
Interesting, but I see no reason why the standard should forbid such
statements. Could you please elaborate on why that would be? Both
variables in the main() given below have automatic storage duration.
The only difference that I can see is that one has a name and the
other does not. So what do you mean by "temporary".
#include <iostream>

class Foo {
public:
Foo(int x): x(x) { }
void foo() const { std::cout << x << std::endl; }
private:
int x;
};

void foo(Foo &foo) { foo.foo(); }

void bar(const Foo &foo) { foo.foo(); }

int main() {

// disallowed: (why???)

foo(Foo(8)); // generates compile time error message
Because it requires binding of a non-const reference to a temporary.
_That_ is not allowed.

// allowed:

Foo x(8);
foo(x);
Here 'x' is a real object (not temporary) and a non-const reference
can be bound to it without a problem.

// syntax error: I guess the standard does not allow
// variables to be defined inside the arguments of
// function calls with a name, which makes sense,
// since where would that name be used, its scope
// being limited...
// foo(Foo y(88)); // syntax error
Correct. There are few places where a declaration is accepted and
the list of arguments in a function call is _not_ one of them.

}


Victor
Jul 22 '05 #6
On 31 Jul 2004 12:30:53 -0700, Neil Zanella <nz******@cs.mun.ca> wrote:
"Dave Townsend" <da********@comcast.net> wrote in message
The standard doesn't allow you to modify tempoary objects like Foo(), so
that is why the compiler is griping.


Interesting, but I see no reason why the standard should forbid such
statements.


Dave is incorrect. Tempoary objects can be modified. What is not allowed
to to bind a non-const reference to a temporary object.

Here is some code which modifies a temporary object

class X
{
X() : x(0) {}
void modify() { x = 1; }
};

int main()
{
X().modify();
}

The reason that binding a non-const reference to a temporary is not
allowed is that it was thought to be too potentially confusing.

have a look here for instance to see what BS had to say about this

http://tinyurl.com/6472t

john
Jul 22 '05 #7
Neil Zanella wrote:
#include <iostream>

class Foo {
public:
Foo(int x): x(x) { }
void foo() const { std::cout << x << std::endl; }
private:
int x;
};

void foo(Foo &foo) { foo.foo(); }

void bar(const Foo &foo) { foo.foo(); }

int main() {

// disallowed: (why???)

foo(Foo(8)); // generates compile time error message


You forgot the most important one:

int i = 8;
foo(i); // equal to foo(Foo(8)) but shows the problem more clearly

Given that foo(Foo&) actually modifies the passed object, a naive user
would expect foo() to modifiy i in the given example. Instead foo()
modifies a temporary Foo object and leaves i untouched.

void foo(int& r) { r = 10; }
class Foo { operator int() { ... } } myfoo;
foo(myfoo);

The same problem occurs in this case: foo modifies a temporary int - not
myfoo, as the user expects.

This would be very confusing and a source of very suble bugs, so it's
good that it's not allowed to bind a temporary object to a reference to
non-const.

--
Regards,
Tobias
Jul 22 '05 #8
Tobias Güntner <fa*****@users.sourceforge.net> wrote in message
The same problem occurs in this case: foo modifies a temporary int - not
myfoo, as the user expects.


How could this be the problem? It's obvious from the signature of method
foo(int &) that myfoo will not be modified because it is not an int but
an object of class Foo. How could this possibly confuse anyone? There
must be a better reason why the standard disallows passing a temporary
to a function that takes a non-const reference. What I find really
strange is that since the object passed to such a function is a
temporary, I can't see that anyone would care about whether it
gets modified or not: since the object is temporary, the
programmer will never have a chance of accessing it ever
again, so why would the programmer care, and why would
the standard disallow it, given that it makes no
difference whether the temporary is modified or
not: after all, it's just a temporary.

Regards,

Neil
class X {
public:
X(): x(0) {}
void modify() { x = 1; }
private:
int x;
};

void foo(int& r) { r = 10; }

class Foo {
public:
operator int() { return 0; }
} myfoo;

int main() {
X().modify();
//foo(myfoo);
}
Jul 22 '05 #9
Neil Zanella wrote:
Tobias Güntner <fa*****@users.sourceforge.net> wrote in message

The same problem occurs in this case: foo modifies a temporary int
- not myfoo, as the user expects.

How could this be the problem? It's obvious from the signature of
method foo(int &) that myfoo will not be modified because it is not
an int but an object of class Foo. How could this possibly confuse
anyone?


Because the user/programmer does not see the functions signature at
first sight or the programmer has to make a few
last-minute-bugfixes and has no time to check the signatures. Or maybe
the programmer is just sloppy. One never knows ;)

Here's another example (there was a link to it in this thread):

void trim_whitespace(string& str);
int main()
{
trim_whitespace(" blah blah ");
return 0;
}

Now show me someone who would not be confused because the string literal
won't be modified. Or what if a user defined class provided a conversion
to string? trim_whitespace would not modify the object that has been
passed as parameter (at least from the user's point of view - the
compiler of course knows about any implicit conversions)

The point is: Because implicit conversions are performed, you might
*involuntaryly* pass a temporary object to a function that is supposed
to modify the original object.

If you're still in doubt, maybe this
<http://www.cuj.com/documents/s=7976/cujcexp2012hyslop/> will convince you.
There must be a better reason why the standard disallows passing a
temporary to a function that takes a non-const reference. What I find really strange is that since the object passed to such a
function is a temporary, I can't see that anyone would care about
whether it gets modified or not:
Usually you pass objects to a modifying function because you really want
it to modify an object, don't you?
since the object is temporary, the programmer will never have a
chance of accessing it ever again
Exactly! Now tell me: Why should I call that function if I never use its
results? (and I'm not talking about error return codes here)
Why call a function that has absolutely no side effects? (or more
exactly: whose side effects vanish immediately after the function has
returned?)
so why would the programmer care, and why would the standard disallow
it, given that it makes no difference whether the temporary is
modified or not: after all, it's just a temporary.
Because in 99 out of 100 cases you don't want to modify a temporary. In
most cases you care for the result, otherwise you wouldn't call that
function.
class X { public: X(): x(0) {} void modify() { x = 1; } private: int
x; }; <snip> int main() { X().modify();


That's OK (i.e. this is the remaining 1 out of 100 cases), because you
consciously & deliberately created a temporary object here - no danger
of subtle bugs in this case.
--
Regards,
Tobias
Jul 22 '05 #10
Tobias Güntner <fa*****@users.sourceforge.net> wrote in message news:<ce*************@news.t-online.com>...
Neil Zanella wrote:
Tobias Güntner <fa*****@users.sourceforge.net> wrote in message

The same problem occurs in this case: foo modifies a temporary int
- not myfoo, as the user expects.

How could this be the problem? It's obvious from the signature of
method foo(int &) that myfoo will not be modified because it is not
an int but an object of class Foo. How could this possibly confuse
anyone?


Because the user/programmer does not see the functions signature at
first sight or the programmer has to make a few
last-minute-bugfixes and has no time to check the signatures. Or maybe
the programmer is just sloppy. One never knows ;)

Here's another example (there was a link to it in this thread):

void trim_whitespace(string& str);
int main()
{
trim_whitespace(" blah blah ");
return 0;
}

Now show me someone who would not be confused because the string literal
won't be modified. Or what if a user defined class provided a conversion
to string? trim_whitespace would not modify the object that has been
passed as parameter (at least from the user's point of view - the
compiler of course knows about any implicit conversions)


Not confusing: in C and C++ it is illegal to modify string literals, thus,
even if the programmer were sloppy enough not to check the function signature,
the programmer would still know that " blah blah " would not get modified.

Furthermore, your example is not a good one because the following code is
legal according to the C++ standard, but according to your point of view
still more confusing than the illegal code you posted: here we have
a pointer to dynamically allocated memory. If the programmer doesn't
check the function signature, then, according to your point of view,
the programmer might think trim_whitespace() may call realloc on
blah (which it doesn't, since it takes an str, hence must call
construct a separate string first).

one is legal,
and yet, while still clear, more confusing than the one

void trim_whitespace(string& str);
int main()
{
char *blah = malloc(12);
strcpy(blah, " blah blah ");
trim_whitespace(blah);
return 0;
}
The point is: Because implicit conversions are performed, you might
*involuntaryly* pass a temporary object to a function that is supposed
to modify the original object.
So according to your point of view, why is the modified
I posted allowed by C++? All you said applies to the
modified code snippet I posted as well.
Usually you pass objects to a modifying function because you really want
it to modify an object, don't you?
Not true. Think about OpenGL where you must necessarily use globals to
save and restore state. Also, think about programs where you pass in an
object and the function returns another one (instead of being a void one
like the one in the example I gave). Think of all those functions that
take CONST references. There is no usually: it depends.
since the object is temporary, the programmer will never have a
chance of accessing it ever again


Exactly! Now tell me: Why should I call that function if I never use its
results?


Because we often don't need to modify what we pass in or use it again at all:

void foo(const int i) {
if (i == 0)
std::cout << "hello" << std::endl;
else
std::cout << "good night" << std::endl;
}

int main() {
foo(0);
foo(1);
}
(and I'm not talking about error return codes here)
Why call a function that has absolutely no side effects? (or more
exactly: whose side effects vanish immediately after the function has
returned?)
??? Obviously, you have narrowed your view to a particular class of functions.
so why would the programmer care, and why would the standard disallow
it, given that it makes no difference whether the temporary is
modified or not: after all, it's just a temporary.
Because in 99 out of 100 cases you don't want to modify a temporary. In
most cases you care for the result, otherwise you wouldn't call that
function.
class X { public: X(): x(0) {} void modify() { x = 1; } private: int
x; };

<snip>
int main() { X().modify(); }


IMHO this example doesn't even do anything... but it's just a particular case.
That's OK (i.e. this is the remaining 1 out of 100 cases), because you
consciously & deliberately created a temporary object here - no danger
of subtle bugs in this case.

Jul 22 '05 #11
Neil Zanella wrote:
Not confusing: in C and C++ it is illegal to modify string literals, thus,
even if the programmer were sloppy enough not to check the function signature,
the programmer would still know that " blah blah " would not get modified.
That doesn't really matter... This literal could be hidden through some
preprocessor variable, a const buried in some headers or a return value
from some other function. It's just one out of a million comparable cases.
Fortunately the compiler will detect the error, no matter why the
programmer wrote such code (maybe he/she is a beginner and doesn't know
better?)
Furthermore, your example is not a good one because the following code is
legal according to the C++ standard,
no, it's not. see below.
but according to your point of view
still more confusing than the illegal code you posted: here we have
a pointer to dynamically allocated memory. If the programmer doesn't
check the function signature, then, according to your point of view,
the programmer might think trim_whitespace() may call realloc on
blah (which it doesn't, since it takes an str, hence must call
construct a separate string first).
That's what I'm trying to explain. And there are many more cases where
the error is not so obvious. Again: Because implicit conversions are
performed, even you might involuntaryly write such code. If you really
want the "wrong" (or "unobvious") behavior, you can still explicitly say so.
void trim_whitespace(string& str);
int main()
{
char *blah = malloc(12);
strcpy(blah, " blah blah ");
trim_whitespace(blah);
return 0;
}
This code is illegal and should not compile for two reasons:
1) malloc returns void* which cannot be converted to char* (but I guess
it's just a typo)
2) in the call to trim_whitespace, a temporary std::string has to be
constructed and bound to a reference to non-const string. Constructing a
string is allowed, but binding the temporary string to a reference to
non-const is not (see 13.3.3.1.4/3).
Actually the standard also says that references to non-const cannot be
bound to r-values [13.3.2/3], but IMHO that's more or less the same in
our context (although I'm not a language lawyer ;) )
The point is: Because implicit conversions are performed, you might
*involuntaryly* pass a temporary object to a function that is supposed
to modify the original object.

So according to your point of view, why is the modified
I posted allowed by C++? All you said applies to the
modified code snippet I posted as well.


As I said, it's _not_ allowed and you've provided a nice example that
shows why it isn't allowed ;)
Usually you pass objects to a modifying function because you really want
it to modify an object, don't you?

Not true. Think about OpenGL where you must necessarily use globals to
save and restore state. Also, think about programs where you pass in an
object and the function returns another one (instead of being a void one
like the one in the example I gave). Think of all those functions that
take CONST references. There is no usually: it depends.


You've lost me here... What do you mean by this? That const-correctness
is not as widely spread as it should be?

since the object is temporary, the programmer will never have a
chance of accessing it ever again


Exactly! Now tell me: Why should I call that function if I never use its
results?

Because we often don't need to modify what we pass in or use it again at all:

void foo(const int i) {
if (i == 0)
std::cout << "hello" << std::endl;
else
std::cout << "good night" << std::endl;
}

int main() {
foo(0);
foo(1);
}


I was talking about the case where foo takes an int&

void calc(int& result) {
result = /* some calculation */;
// the only visible effects of calc() are
// the effects caused to the result parameter
// calc does not modify any global variables,
// do I/O, etc. or call other functions that might do
}

int main()
{
// let calc() do something, but I don't care for the result
// If the compiler is smart enough, it will optimize the
// entire function call away - What has been gained by
// this function call? Why did the programmer do this?
calc(int());

// some class that provides operator int()
convertible_to_int not_an_int;
// ...
calc(not_an_int);
// not_an_int is unchanged - is this really the intent?
// Did the programmer really want to write a do-nothing statement?
}
(and I'm not talking about error return codes here)
Why call a function that has absolutely no side effects? (or more
exactly: whose side effects vanish immediately after the function has
returned?)

??? Obviously, you have narrowed your view to a particular class of functions.


because IMHO the restriction has been placed to prevent subtle bugs that
can only occur under very specific circumstances.

There is no problem with functions that take references to const - It
clearly states "dear function, take this object and do with it what you
like, but don't change it", whereas reference to non-const says "take
this object and do with it what you like; you may even change it".
In the latter case, the compiler cannot be sure if the programmer wanted
to modify a) the original object or b) the temporary object that had to
be created for conversion. These two things are completely different!
Jul 22 '05 #12
Tobias Güntner <fa*****@users.sourceforge.net> wrote in message news:<cfbl36
void trim_whitespace(string& str);
int main()
{
char *blah = malloc(12);
strcpy(blah, " blah blah ");
trim_whitespace(blah);
return 0;
}
This code is illegal and should not compile for two reasons:
1) malloc returns void* which cannot be converted to char* (but I guess
it's just a typo)


You're right, this in fact seems to be one difference between C and C++:

In C you can say "char *blah = malloc(12);",
but in C++ you must explicitly use a cast or
the compiler will complain.
2) in the call to trim_whitespace, a temporary std::string has to be
constructed and bound to a reference to non-const string. Constructing a
string is allowed, but binding the temporary string to a reference to
non-const is not (see 13.3.3.1.4/3).
Actually the standard also says that references to non-const cannot be
bound to r-values [13.3.2/3], but IMHO that's more or less the same in
our context (although I'm not a language lawyer ;) )
I see what you mean now: consider the following code:

#include <iostream>
#include <cstring>
#include <string>

void foo(std::string &str) { // not allowed because C++ won't convert a
// temporary to a nonconst reference on a
// function call: must use the following
// signature instead
//void foo(const std::string &str) {
std::cout << str << std::endl;
}

int main() {
char *blah = static_cast<char *>(malloc(22));
strcpy(blah, " blah blah ");
foo(blah);
}

When I use the wrong signature the compiler issues the following error:

$ g++ hello.cpp
hello.cpp: In function `int main ()':
hello.cpp:16: could not convert `blah' to `string &'
hello.cpp:5: in passing argument 1 of `foo (string &)'
As I said, it's _not_ allowed and you've provided a nice example that
shows why it isn't allowed ;)
Thanks. ;)
because IMHO the restriction has been placed to prevent subtle bugs that
can only occur under very specific circumstances.

There is no problem with functions that take references to const - It
clearly states "dear function, take this object and do with it what you
like, but don't change it", whereas reference to non-const says "take
this object and do with it what you like; you may even change it".
In the latter case, the compiler cannot be sure if the programmer wanted
to modify a) the original object or b) the temporary object that had to
be created for conversion. These two things are completely different!


In other words it's all there to prevent programming errors due to the
programmer not checking signatures: to prevent the situation where the
programmer expects the passed in parameter to be modified when in fact
something constructed from it ends up being modified.

All of this because C++ introduces the concept of calling a constructor
on a parameter to a function. The fact that such constructor may
do a copy on the passed in argument means that the resulting
constructed object may not alter the origninal object when
acted upon by some code.

Fair enough. It seems like nothing more than a design decision.
The following is legal because it does not make use of the
"construction on function call" as described above.

#include <iostream>
#include <cstring>
#include <string>

void foo(std::string &str) {
std::cout << str << std::endl;
}

int main() {
char *blah = static_cast<char *>(malloc(22));
strcpy(blah, " blah blah ");
std::string s(blah);
foo(s);
}

The following is also disallowed, by design decision: the C++ designers
figured that since a temporary is being passed in good coding practice
dictates that the programmer ought to be make foo const. (?)

#include <iostream>
#include <cstring>
#include <string>

void foo(std::string &str) {
std::cout << str << std::endl;
}

int main() {
char *blah = static_cast<char *>(malloc(22));
strcpy(blah, " blah blah ");
foo(std::string(blah));
}
Jul 22 '05 #13
Neil Zanella wrote:
In other words it's all there to prevent programming errors due to the
programmer not checking signatures: to prevent the situation where the
programmer expects the passed in parameter to be modified when in fact
something constructed from it ends up being modified.

All of this because C++ introduces the concept of calling a constructor
on a parameter to a function. The fact that such constructor may
do a copy on the passed in argument means that the resulting
constructed object may not alter the origninal object when
acted upon by some code.
Exactly. Fortunately the compiler immediately reminds the programmer
that he/she tried to do something stupid ;)
Fair enough. It seems like nothing more than a design decision.
I agree. I don't see any technical difficulties that would lead to this
restriction.
The following is also disallowed, by design decision: the C++ designers
figured that since a temporary is being passed in good coding practice
dictates that the programmer ought to be make foo const. (?)


Indeed, that might be a hint that something is wrong with the program's
design.
--
Regards,
Tobias
Jul 22 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

36
by: Dmitriy Iassenev | last post by:
hi, I found an interesting thing in operator behaviour in C++ : int i=1; printf("%d",i++ + i++); I think the value of the expression "i++ + i++" _must_ be 3, but all the compilers I tested...
20
by: Markus Sandheide | last post by:
Hello! Execute these lines: int x = 1; x = x > 2345678901; You will get: x == 1 with Borland C++ Builder
3
by: Alfonso Morra | last post by:
I have some code that I am porting over from C. It is full of static functions and global variables. I have got around this by wrapping most of the code in a singleton object. However, I am...
8
by: Harvey Twyman | last post by:
I have code written under the CCS 'C' Compiler to run on a PIC microcontroller. Code Extract: ------------------------------- char a,b,c; ------------------------------- c = ( a == b );...
10
by: Karim Thapa | last post by:
Why following macro does not work? #define removebrace(x) x void Foo(int a, int b, char *txt, int d, int e); main() {
3
by: Evangelista Sami | last post by:
hello i have this strange error message that i dont understand : _search.c: In function `_depth_search': _search.c:218: unable to find a register to spill in class `AREG' _search.c:218: this...
2
by: Kris Vanherck | last post by:
yesterday i started getting this strange error when i try to run my asp.net project: Compiler Error Message: CS0006: Metadata file 'c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net...
11
by: Mike C# | last post by:
Hi all, I keep getting a strange error and can't pin it down. The message is: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's...
8
by: =?GB2312?B?yum09MXt?= | last post by:
today I forgot to include some header,then I found the error message by the compiler is quite strange. so I want to know exactly the inner details of the compiler impletation,if possible. and I...
20
by: Pilcrow | last post by:
This behavior seems very strange to me, but I imagine that someone will be able to 'explain' it in terms of the famous C standard. -------------------- code -----------------------------------...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.